]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Backport of 1.111:
authorGuido van Rossum <guido@python.org>
Wed, 25 Sep 2002 15:00:40 +0000 (15:00 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 25 Sep 2002 15:00:40 +0000 (15:00 +0000)
Disable building of the fpectl module -- it's dangerous or useless
except in the hands of experts.

setup.py

index 66775428fc1b5b8a21ff86ee15c929f73c92abe8..fc8cfa9adbcf9323b92c0f692704ababfd7161b0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -499,20 +499,21 @@ class PyBuildExt(build_ext):
         # The library to link fpectl with is platform specific.
         # 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']) )
+        # 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.