[Python-checkins] python/dist/src setup.py,1.145,1.146

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 18 Feb 2003 02:24:37 -0800


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

Modified Files:
	setup.py 
Log Message:
Don't try to build dl on darwin. It doesn't build out of the box, and it
wouldn't serve a useful purpose anyway.


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.145
retrieving revision 1.146
diff -C2 -d -r1.145 -r1.146
*** setup.py	13 Feb 2003 16:11:27 -0000	1.145
--- setup.py	18 Feb 2003 10:24:34 -0000	1.146
***************
*** 735,739 ****
              # This requires sizeof(int) == sizeof(long) == sizeof(char*)
              dl_inc = find_file('dlfcn.h', [], inc_dirs)
!             if (dl_inc is not None) and (platform not in ['atheos']):
                  exts.append( Extension('dl', ['dlmodule.c']) )
  
--- 735,739 ----
              # This requires sizeof(int) == sizeof(long) == sizeof(char*)
              dl_inc = find_file('dlfcn.h', [], inc_dirs)
!             if (dl_inc is not None) and (platform not in ['atheos', 'darwin']):
                  exts.append( Extension('dl', ['dlmodule.c']) )