From 06a8087cb57111a2e7549c33de402e813aac72cf Mon Sep 17 00:00:00 2001 From: steve Date: Tue, 5 Nov 2002 02:14:16 +0000 Subject: [PATCH] Do not need _leading underscore on Windows. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 7f5af2c30..98b028fa7 100644 --- a/configure.in +++ b/configure.in @@ -206,7 +206,7 @@ CC_LEADING_UNDERSCORE=no CC_TRAILING_UNDERSCORE=no output=`nm underscore.o|grep _underscore 2>&1` -if test ! -z "$output" -o $WIN32 = "yes"; then +if test ! -z "$output" -a -z "$CYGWIN" -a -z "$MINGW32"; then CC_LEADING_UNDERSCORE=yes AC_DEFINE(NEED_LU) fi