summaryrefslogtreecommitdiff
path: root/graphics/libepoxy/patches
AgeCommit message (Collapse)AuthorFilesLines
2017-06-08Fix for missing EGL_CASTadam1-0/+20
2017-06-08Changes 1.4.3:adam2-83/+1
Require Meson 0.39.1; the previous release already had an implicit requirement on this version Allow disabling EGL support when building Epoxy Add support for building on Haiku Update EGL registry from Khronos
2017-04-19The generic EGL/GLX/WGL defaults are suitable for Darwin as BUILD_EGL will bedsainty1-2/+14
correct, and possibly not zero. No revision bump required - this change fixes the build if the EGL = 0 guess was incorrect, and no change if it was correct.
2017-02-18When not hard-coding EGL, use the correct macro that available EGL isjoerg1-2/+2
actually used.
2017-02-18Fix hardcoded EGL detection to build this on NetBSD/amd64 current withryoon2-1/+70
native X.org.
2017-02-17Updated libepoxy to 1.4.wiz3-69/+14
This is a new stable release. Major changes for 1.4 are: Epoxy can now build with MSVC versions prior to 2013; we still recommend using a recent, C99-compatible compiler, like MSVC 2015 [Chun-wei Fan] When used under X11, Epoxy now attempts to handle the cases where the GLX extension is not built or not available [Yaron Cohen-Tal] GLX can now be enabled and disabled at configuration time; this allows building Epoxy with GLX on macOS, and allows building Epoxy without GLX on embedded platforms Epoxy now exposes API that lets dependent projects safely check if platform API like GLX and EGL is available at run time EGL support has been improved on Windows, and made more resilient on other platforms [Yaron Cohen-Tal, Adam Jackson] Epoxy supports building with the Meson build system, which has Ninja, Visual Studio, and XCode backends Epoxy can generate its API reference using Doxygen (currently only available on Meson builds) The GL registry has been updated with the latest version of the API references provided by Khronos; Epoxy now supports the API introduced by OpenGL 4.5
2015-11-19Allow building on OS X without X11adam2-18/+21
2015-10-01Deal with hardcoded libGL.1.dylib location. Fixes gtk3 apps on OSX.tnn1-4/+10
2015-09-24PR pkg/50256: pretend to return NULL in epoxy_get_proc_address after errx()tnn1-1/+10
2015-09-14Re-enable glx on OS X.gdt2-5/+30
Upstream disabled glx on OS X (in an apparent attempt to make it build on systems without X11). However, libepoxy without glx is defective, and gtk3 fails with it. So it seems like the right thing is to ensure X11 presence for libepoxy. This patch reverts upstream's disabling of glx (setting configure variables/defines), making it be like libepoxy 1.2. The resulting libepoxy has glx, and gtk3+ builds fine against it on OS X 10.9. (It remains TBD to sort out how we feel about X vs quartz, but that's a separable issue.) Reviewed by ttn@ and tron@.
2015-09-13Update to libepoxy-1.3.1 (2015-07-16)tnn2-26/+8
Changes: GL API registry update fixes for a nonconformant GL implementation some library size reductions support reproducible builds
2015-06-14libepoxy looks for libGL.so.1. This matches the pkgsrc version, butprlw11-0/+15
native X has libGL.so.2. Split the difference and look for libGL.so.
2015-06-13Fix build with native / old X11 (build tested on netbsd-6)tnn2-0/+52
Apparently this will be required by GTK3 soon.