summaryrefslogtreecommitdiffstats
path: root/package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch
diff options
context:
space:
mode:
authorPaulius Zaleckas <paulius.zaleckas@gmail.com>2010-02-28 11:34:21 +0200
committerPaulius Zaleckas <paulius.zaleckas@gmail.com>2010-02-28 11:34:21 +0200
commitf6ae1bae243bff46dc6b7d9b6dcdb1f0e82a1c6e (patch)
tree5278077193074ebdd79ca952b96563517431c378 /package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch
parentcd3f5088422da0386eb0f274723d2822c0dc215a (diff)
downloadbuildroot-novena-f6ae1bae243bff46dc6b7d9b6dcdb1f0e82a1c6e.tar.gz
buildroot-novena-f6ae1bae243bff46dc6b7d9b6dcdb1f0e82a1c6e.zip
Bump xf86-video-xgi to 1.5.1
Also fix building of this package. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Diffstat (limited to 'package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch')
-rw-r--r--package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch b/package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch
new file mode 100644
index 000000000..fc7903c46
--- /dev/null
+++ b/package/x11r7/xdriver_xf86-video-xgi/xdriver_xf86-video-xgi-cross-compile.patch
@@ -0,0 +1,24 @@
+--- xdriver_xf86-video-xgi-1.5.1/configure.ac.orig 2009-09-07 08:03:18.000000000 +0300
++++ xdriver_xf86-video-xgi-1.5.1/configure.ac 2010-02-03 23:58:40.507035914 +0200
+@@ -78,12 +78,18 @@ sdkdir=$(pkg-config --variable=sdkdir xo
+ AC_HEADER_STDC
+
+ if test "x$DRI" = xauto; then
+- AC_CHECK_FILE([${sdkdir}/dri.h],
++ if test "$cross_compiling" = "no" ; then
++ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+- AC_CHECK_FILE([${sdkdir}/sarea.h],
++ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+- AC_CHECK_FILE([${sdkdir}/dristruct.h],
++ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])