diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-14 14:59:14 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-14 14:59:14 +0000 |
commit | 59b0aa7a7ee327688a77dd5d01d0b2032f6535a2 (patch) | |
tree | 734ec30ae8cf8acb65d94e98001d8947d437db3f /package/x11r7/xlib_libpciaccess/xlib_libpciaccess-0.10.3-fix_mtrr_check.patch | |
parent | be245ad9c75863569add2d4b6a92922c3a680514 (diff) | |
download | buildroot-novena-59b0aa7a7ee327688a77dd5d01d0b2032f6535a2.tar.gz buildroot-novena-59b0aa7a7ee327688a77dd5d01d0b2032f6535a2.zip |
x11r7: update to 7.4
Patch by Dan Lykowski <lykowdk@gmail.com>, closes #181.
Minor fixups for kdrive by me.
Diffstat (limited to 'package/x11r7/xlib_libpciaccess/xlib_libpciaccess-0.10.3-fix_mtrr_check.patch')
-rw-r--r-- | package/x11r7/xlib_libpciaccess/xlib_libpciaccess-0.10.3-fix_mtrr_check.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/x11r7/xlib_libpciaccess/xlib_libpciaccess-0.10.3-fix_mtrr_check.patch b/package/x11r7/xlib_libpciaccess/xlib_libpciaccess-0.10.3-fix_mtrr_check.patch new file mode 100644 index 000000000..6608d0dbb --- /dev/null +++ b/package/x11r7/xlib_libpciaccess/xlib_libpciaccess-0.10.3-fix_mtrr_check.patch @@ -0,0 +1,20 @@ +diff -uNr xlib_libpciaccess-0.10.3.orig/configure.ac xlib_libpciaccess-0.10.3/configure.ac +--- xlib_libpciaccess-0.10.3.orig/configure.ac 2009-02-09 18:35:50.000000000 -0800 ++++ xlib_libpciaccess-0.10.3/configure.ac 2009-02-09 18:38:56.000000000 -0800 +@@ -91,10 +91,12 @@ + AM_CONDITIONAL(OPENBSD, [test "x$openbsd" = xyes]) + AM_CONDITIONAL(SOLARIS, [test "x$solaris" = xyes]) + +-AC_CHECK_FILE([/usr/include/asm/mtrr.h], +- [have_mtrr_h="yes"], [have_mtrr_h="no"]) +-if test "x$have_mtrr_h" = xyes; then +- AC_DEFINE(HAVE_MTRR, 1, [Use MTRRs on mappings]) ++if test "$cross_compiling" != yes; then ++AC_CHECK_FILE([/usr/include/asm/mtrr.h], ++ [have_mtrr_h="yes"], [have_mtrr_h="no"]) ++if test "x$have_mtrr_h" = xyes; then ++ AC_DEFINE(HAVE_MTRR, 1, [Use MTRRs on mappings]) ++fi + fi + + AC_SUBST(PCIACCESS_CFLAGS) |