From: Neil Schemenauer Date: Sat, 27 Jan 2001 21:39:17 +0000 (+0000) Subject: - Remove Guido's LINKCC=CXX experiment. X-Git-Tag: v2.1a2~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9cf41c4381bf7e7f09dfbb986dee52fff6c3114;p=thirdparty%2FPython%2Fcpython.git - Remove Guido's LINKCC=CXX experiment. - Cygwin doesn't want CCSHARED flag when bulding the interpreter DLL. --- diff --git a/configure.in b/configure.in index 554aa936997f..0fd8cee28588 100644 --- a/configure.in +++ b/configure.in @@ -221,10 +221,6 @@ DLLLIBRARY='' # linking. AC_SUBST(LINKCC) AC_MSG_CHECKING(LINKCC) -if test -z "$LINKCC" -a ! -z "$CXX" -then - LINKCC="$CXX" -fi if test -z "$LINKCC" then case $ac_sys_system in @@ -647,7 +643,14 @@ AC_SUBST(CFLAGSFORSHARED) AC_MSG_CHECKING(CFLAGSFORSHARED) if test ! "$LIBRARY" = "$LDLIBRARY" then - CFLAGSFORSHARED='$(CCSHARED)' + case $ac_sys_system in + CYGWIN*) + # Cygwin needs CCSHARED when building extension DLLs + # but not when building the interpreter DLL. + CFLAGSFORSHARED='';; + *) + CFLAGSFORSHARED='$(CCSHARED)' + esac fi AC_MSG_RESULT($CFLAGSFORSHARED)