Do not need _leading underscore on Windows.

This commit is contained in:
steve 2002-11-05 02:14:16 +00:00
parent a9dfef0f55
commit 06a8087cb5
1 changed files with 1 additions and 1 deletions

View File

@ -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