summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 8a36129..577cba7 100755
--- a/configure
+++ b/configure
@@ -45,6 +45,7 @@ VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h`
45AR=${AR-"${CROSS_PREFIX}ar"} 45AR=${AR-"${CROSS_PREFIX}ar"}
46AR_RC="${AR} rc" 46AR_RC="${AR} rc"
47RANLIB=${RANLIB-"${CROSS_PREFIX}ranlib"} 47RANLIB=${RANLIB-"${CROSS_PREFIX}ranlib"}
48NM=${NM-"nm"}
48LDCONFIG=${LDCONFIG-"ldconfig"} 49LDCONFIG=${LDCONFIG-"ldconfig"}
49LDSHAREDLIBC="${LDSHAREDLIBC-"-lc"}" 50LDSHAREDLIBC="${LDSHAREDLIBC-"-lc"}"
50prefix=${prefix-/usr/local} 51prefix=${prefix-/usr/local}
@@ -505,7 +506,7 @@ fi
505CPP=${CPP-"$CC -E"} 506CPP=${CPP-"$CC -E"}
506case $CFLAGS in 507case $CFLAGS in
507 *ASMV*) 508 *ASMV*)
508 if test "`nm $test.o | grep _hello`" = ""; then 509 if test "`$NM $test.o | grep _hello`" = ""; then
509 CPP="$CPP -DNO_UNDERLINE" 510 CPP="$CPP -DNO_UNDERLINE"
510 echo Checking for underline in external names... No. 511 echo Checking for underline in external names... No.
511 else 512 else