[Python-checkins] CVS: python/dist/src/Mac/Lib/mkcwproject __init__.py,1.10,1.10.8.1

Jack Jansen jackjansen@users.sourceforge.net
Mon, 26 Nov 2001 15:05:13 -0800


Update of /cvsroot/python/python/dist/src/Mac/Lib/mkcwproject
In directory usw-pr-cvs1:/tmp/cvs-serv3818/Python/Mac/Lib/mkcwproject

Modified Files:
      Tag: r22b2-branch
	__init__.py 
Log Message:
Added support for weak-linking the system interface library and/or the user-supplied dynamic libraries. The latter is all-or-nothing, i.e. no way to weak link only specific libraries, but for now that is good enough.

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/mkcwproject/__init__.py,v
retrieving revision 1.10
retrieving revision 1.10.8.1
diff -C2 -d -r1.10 -r1.10.8.1
*** __init__.py	2001/08/25 12:00:44	1.10
--- __init__.py	2001/11/26 23:05:11	1.10.8.1
***************
*** 19,22 ****
--- 19,26 ----
  	if not dictcopy.has_key('mac_outputdir'):
  		dictcopy['mac_outputdir'] = ':lib:'
+ 	if not dictcopy.has_key('stdlibraryflags'):
+ 		dictcopy['stdlibraryflags'] = 'Debug'
+ 	if not dictcopy.has_key('libraryflags'):
+ 		dictcopy['libraryflags'] = 'Debug'
  	if not dictcopy.has_key('mac_dllname'):
  		dictcopy['mac_dllname'] = modulename + '.ppc.slb'