[Python-checkins] python/dist/src configure,1.382,1.383

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Mon, 17 Mar 2003 07:44:27 -0800


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv9055

Modified Files:
	configure 
Log Message:
Added a define EXTRAMACHDEPPATH which can be used to add sys.path items
for specific platforms. Use this to add plat-mac and
plat-mac/lib-scriptpackages on MacOSX. Also tested for not having adverse
effects on Linux, and I think this code isn't used on Windows anyway.

Fixes #661521.



Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.382
retrieving revision 1.383
diff -C2 -d -r1.382 -r1.383
*** configure	14 Mar 2003 21:51:20 -0000	1.382
--- configure	17 Mar 2003 15:44:10 -0000	1.383
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.392 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.393 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
***************
*** 1391,1394 ****
--- 1391,1395 ----
  # And add extra plat-mac for darwin
  
+ 
  echo "$as_me:$LINENO: checking EXTRAPLATDIR" >&5
  echo $ECHO_N "checking EXTRAPLATDIR... $ECHO_C" >&6
***************
*** 1396,1401 ****
  then
  	case $MACHDEP in
! 	darwin)	EXTRAPLATDIR="\$(PLATMACDIRS)";;
! 	*) EXTRAPLATDIR="";;
  	esac
  fi
--- 1397,1408 ----
  then
  	case $MACHDEP in
! 	darwin)
! 		EXTRAPLATDIR="\$(PLATMACDIRS)"
! 		EXTRAMACHDEPPATH="\$(PLATMACPATH)"
! 		;;
! 	*)
! 		EXTRAPLATDIR=""
! 		EXTRAMACHDEPPATH=""
! 		;;
  	esac
  fi
***************
*** 17469,17472 ****
--- 17476,17480 ----
  s,@SGI_ABI@,$SGI_ABI,;t t
  s,@EXTRAPLATDIR@,$EXTRAPLATDIR,;t t
+ s,@EXTRAMACHDEPPATH@,$EXTRAMACHDEPPATH,;t t
  s,@CXX@,$CXX,;t t
  s,@MAINOBJ@,$MAINOBJ,;t t