[Python-checkins] CVS: python/dist/src configure.in,1.198,1.199

Neil Schemenauer nascheme@users.sourceforge.net
Sat, 27 Jan 2001 13:39:19 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv32331

Modified Files:
	configure.in 
Log Message:
- Remove Guido's LINKCC=CXX experiment.
- Cygwin doesn't want CCSHARED flag when bulding the interpreter DLL.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.198
retrieving revision 1.199
diff -C2 -r1.198 -r1.199
*** configure.in	2001/01/27 06:54:42	1.198
--- configure.in	2001/01/27 21:39:17	1.199
***************
*** 222,229 ****
  AC_SUBST(LINKCC)
  AC_MSG_CHECKING(LINKCC)
- if test -z "$LINKCC" -a ! -z "$CXX"
- then
-     LINKCC="$CXX"
- fi
  if test -z "$LINKCC"
  then
--- 222,225 ----
***************
*** 648,652 ****
  if test ! "$LIBRARY" = "$LDLIBRARY"
  then
! 	CFLAGSFORSHARED='$(CCSHARED)'
  fi
  AC_MSG_RESULT($CFLAGSFORSHARED)
--- 644,655 ----
  if test ! "$LIBRARY" = "$LDLIBRARY"
  then
! 	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)