[Python-checkins] python/dist/src setup.py,1.113,1.114

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Fri, 08 Nov 2002 05:11:53 -0800


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

Modified Files:
	setup.py 
Log Message:
Simply delete the fpectl module, instead of leaving it commented out; 
    if people want to compile it, they should edit Modules/Setup, not setup.py


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** setup.py	5 Nov 2002 16:50:04 -0000	1.113
--- setup.py	8 Nov 2002 13:11:50 -0000	1.114
***************
*** 651,676 ****
  
  
- 
-         # Lee Busby's SIGFPE modules.
-         # The library to link fpectl with is platform specific.
-         # Choose *one* of the options below for fpectl:
- 
-         # Disabled; it's dangerous or useless except in the hands of experts.
- ##        if platform == 'irix5':
- ##            # For SGI IRIX (tested on 5.3):
- ##            exts.append( Extension('fpectl', ['fpectlmodule.c'],
- ##                                   libraries=['fpe']) )
- ##        elif 0: # XXX how to detect SunPro?
- ##            # For Solaris with SunPro compiler (tested on Solaris 2.5
- ##            # with SunPro C 4.2): (Without the compiler you don't have
- ##            # -lsunmath.)
- ##            #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
- ##            pass
- ##        else:
- ##            # For other systems: see instructions in fpectlmodule.c.
- ##            #fpectl fpectlmodule.c ...
- ##            exts.append( Extension('fpectl', ['fpectlmodule.c']) )
- 
- 
          # Andrew Kuchling's zlib module.  Note that some versions of zlib
          # 1.1.3 have security problems.  See CERT Advisory CA-2002-07:
--- 651,654 ----