aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 91ec83765d4..8b2bfcba251 100644
--- a/configure.in
+++ b/configure.in
@@ -1485,6 +1485,16 @@ dnl Do this early because it can frob feature test macros for Unix-98 &c.
1485AC_SYS_LARGEFILE 1485AC_SYS_LARGEFILE
1486 1486
1487 1487
1488### The standard library on x86-64 GNU/Linux distributions can
1489### be located in either /usr/lib64 or /usr/lib.
1490case "${canonical}" in
1491 x86_64-*-linux-gnu* )
1492 if test -d /usr/lib64; then
1493 AC_DEFINE(HAVE_X86_64_LIB64_DIR, 1,
1494 [Define to 1 if the file /usr/lib64 exists.])
1495fi
1496esac
1497
1488dnl This function defintion taken from Gnome 2.0 1498dnl This function defintion taken from Gnome 2.0
1489dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) 1499dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1490dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page 1500dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page