aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2008-01-17 11:41:10 +0000
committerAndreas Schwab2008-01-17 11:41:10 +0000
commitddd01c5dd482b19eb962f60cb135ac392eba9f01 (patch)
tree2226d0ae3f3d44b8f6d0c76d03286bff8ac93295
parent2f5ca70b21e0f3be0bc2e51f25d8430670a16bc2 (diff)
downloademacs-ddd01c5dd482b19eb962f60cb135ac392eba9f01.tar.gz
emacs-ddd01c5dd482b19eb962f60cb135ac392eba9f01.zip
(HAVE_LIB64_DIR): Renamed from HAVE_X86_64_LIB64_DIR.
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index f514087e306..00b219db21e 100644
--- a/configure.in
+++ b/configure.in
@@ -1072,13 +1072,13 @@ dnl Do this early because it can frob feature test macros for Unix-98 &c.
1072AC_SYS_LARGEFILE 1072AC_SYS_LARGEFILE
1073 1073
1074 1074
1075### The standard library on x86-64 GNU/Linux distributions can 1075### The standard library on x86-64 and s390x GNU/Linux distributions can
1076### be located in either /usr/lib64 or /usr/lib. 1076### be located in either /usr/lib64 or /usr/lib.
1077case "${canonical}" in 1077case "${canonical}" in
1078 x86_64-*-linux-gnu* | s390x-*-linux-gnu* ) 1078 x86_64-*-linux-gnu* | s390x-*-linux-gnu* )
1079 if test -d /usr/lib64; then 1079 if test -d /usr/lib64; then
1080 AC_DEFINE(HAVE_X86_64_LIB64_DIR, 1, 1080 AC_DEFINE(HAVE_LIB64_DIR, 1,
1081 [Define to 1 if the file /usr/lib64 exists.]) 1081 [Define to 1 if the directory /usr/lib64 exists.])
1082fi 1082fi
1083esac 1083esac
1084 1084