[Python-checkins] python/dist/src setup.py,1.73.4.7,1.73.4.8

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 25 Sep 2002 08:00:44 -0700


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

Modified Files:
      Tag: release22-maint
	setup.py 
Log Message:
Backport of 1.111:

Disable building of the fpectl module -- it's dangerous or useless
except in the hands of experts.


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.73.4.7
retrieving revision 1.73.4.8
diff -C2 -d -r1.73.4.7 -r1.73.4.8
*** setup.py	8 Aug 2002 19:52:42 -0000	1.73.4.7
--- setup.py	25 Sep 2002 15:00:40 -0000	1.73.4.8
***************
*** 500,517 ****
          # Choose *one* of the options below for fpectl:
  
!         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']) )
  
  
--- 500,518 ----
          # 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']) )