diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2017-02-15 07:38:50 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-02-15 14:13:59 +0100 |
commit | 6e833d3065a17d200e0d9e2bfa285d8e4467d095 (patch) | |
tree | 510e88057dbc02c4a256055283af4deb5bb234ba /package/libepoxy/0002-add-an-option-to-disable-glx-support.patch | |
parent | 90be2119321089e4e7442b2b89ace93174c309f4 (diff) | |
download | buildroot-6e833d3065a17d200e0d9e2bfa285d8e4467d095.tar.gz buildroot-6e833d3065a17d200e0d9e2bfa285d8e4467d095.zip |
libepoxy: bump to version 1.4.0
Drop all patches since they're upstream, yay!
Switch to the gnome mirror since it's more handy than github, and it
also allows to drop autoreconf since it's a distribution tarball with
the configure script is already generated.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libepoxy/0002-add-an-option-to-disable-glx-support.patch')
-rw-r--r-- | package/libepoxy/0002-add-an-option-to-disable-glx-support.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/package/libepoxy/0002-add-an-option-to-disable-glx-support.patch b/package/libepoxy/0002-add-an-option-to-disable-glx-support.patch deleted file mode 100644 index a81547de1c..0000000000 --- a/package/libepoxy/0002-add-an-option-to-disable-glx-support.patch +++ /dev/null @@ -1,39 +0,0 @@ -From a9efde0fb2678cd26bdf26d256732d97ded0c595 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> -Date: Wed, 6 May 2015 11:05:48 +0200 -Subject: [PATCH 2/4] add an option to disable glx support -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -this option would help us in yocto to get deterministic build results - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> -Fetched from pull #81 on github for libepoxy: -https://github.com/anholt/libepoxy/pull/81/commits -Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> ---- - configure.ac | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 225ab73..d3d947c 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -58,7 +58,14 @@ AC_CHECK_HEADER([KHR/khrplatform.h], - # uintptr_t to a void *") by default. Kill that. - XORG_TESTSET_CFLAG(CWARNFLAGS, [-Wno-int-conversion]) - --PKG_CHECK_MODULES(X11, [x11], [x11=yes], [x11=no]) -+AC_ARG_ENABLE([glx], -+ [AS_HELP_STRING([--disable-glx], -+ [disable if you don't want x11/glx support])], -+ [], -+ [enable_glx=yes] -+ ) -+ -+PKG_CHECK_MODULES(X11, [x11], [x11=$enable_glx], [x11=no]) - - AM_CONDITIONAL(HAVE_X11, test x$x11 = xyes) - - |