aboutsummaryrefslogtreecommitdiff
path: root/graphics/glew-wayland
Commit message (Collapse)AuthorAgeFilesLines
* graphics/glew-wayland: suggest LD_LIBMAP for session-local overrideJan Beich2021-08-202-1/+4
| | | | | | | | | | LD_LIBMAP can be limited to Wayland or KMS console e.g., $ cat >>~/.zshrc if [[ ( -n $WAYLAND_DISPLAY || -z $DISPLAY ) && $LD_LIBMAP != *GLEW-wayland* ]]; then export LD_LIBMAP=libGLEW.so.2=libGLEW-wayland.so.2,$LD_LIBMAP export SDL_VIDEODRIVER=wayland,kmsdrm,x11 fi
* graphics/mesa-libs: Bump reverse deps for libglvndKevin Bowling2021-06-221-1/+1
| | | | | | | | | | Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* graphics/glew: update to 2.2.0Jan Beich2020-06-062-2/+2
| | | | | | | | | Changes: https://github.com/nigels-com/glew/compare/glew-2.1.0...555aa3ffc085 Approved by: zeising (maintainer) Differential Revision: https://reviews.freebsd.org/D25162 Notes: svn path=/head/; revision=538091
* graphics/glew-wayland: install more filesJan Beich2020-02-292-1/+19
| | | | | | | | $ LD_PRELOAD=libGLEW-wayland.so glewinfo Error [main]: glewInit failed: Missing GL version Notes: svn path=/head/; revision=527479
* graphics/glew-wayland: unbreak on GCC architecturesJan Beich2019-11-301-0/+2
| | | | | | | | | | | | | | | | | | | In file included from src/glew.c:43: include/GL/eglew.h:115: error: redefinition of typedef 'EGLint' /usr/local/include/EGL/eglplatform.h:158: error: previous declaration of 'EGLint' was here $ gcc42 -xc -c - typedef int foo; typedef int foo; ^D <stdin>:2: error: redefinition of typedef 'foo' <stdin>:1: error: previous declaration of 'foo' was here PR: 242310 Reported by: pkubaj Notes: svn path=/head/; revision=518713
* graphics/glew: add -wayland slaveJan Beich2019-11-143-0/+41
SDL_VIDEODRIVER=wayland doesn't work with current glew package while SDL_VIDEODRIVER=x11 doesn't work using this package. So, build against libEGL instead of libX11 and let the user decide when to use. Idea from: ArchLinux Tested by: SDL (freeorion, ppsspp, renpy) Notes: svn path=/head/; revision=517542