]> granicus.if.org Git - python/commitdiff
Get rid of MacOS9 support. Paths are still hard-coded, that'll be fixed
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 19 Nov 2003 16:12:08 +0000 (16:12 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 19 Nov 2003 16:12:08 +0000 (16:12 +0000)
later.

Lib/plat-mac/bgenlocations.py

index 01e21dbf3adc416b603bf5278f2e93072f729a7b..d4f2d70c39f2809ad8cf65778660b46495b401cc 100644 (file)
@@ -11,13 +11,7 @@ Error = "bgenlocations.Error"
 #
 # Where bgen is. For unix-Python bgen isn't installed, so you have to refer to
 # the source tree here.
-if sys.platform == 'mac':
-    # For MacPython we know where it is
-    def _pardir(p): return os.path.split(p)[0]
-    BGENDIR=os.path.join(sys.prefix, "Tools", "bgen", "bgen")
-else:
-    # for unix-Python we don't know, please set it yourself.
-    BGENDIR="/Users/jack/src/python/Tools/bgen/bgen"
+BGENDIR="/Users/jack/src/python/Tools/bgen/bgen"
 
 #
 # Where to find the Universal Header include files. If you have CodeWarrior
@@ -25,21 +19,14 @@ else:
 # download them from the Apple website. Bgen can handle both unix- and mac-style
 # end of lines, so don't worry about that.
 #
-if sys.platform == 'mac':
-    _MWERKSDIR="Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior"
-else:
-    _MWERKSDIR="/Volumes/Moes/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/"
-INCLUDEDIR=os.path.join(_MWERKSDIR, "MacOS Support", "Universal", "Interfaces", "CIncludes")
+INCLUDEDIR="/Users/jack/src/Universal/Interfaces/CIncludes"
 
 #
 # Where to put the python definitions files. Note that, on unix-Python,
 # if you want to commit your changes to the CVS repository this should refer to
 # your source directory, not your installed directory.
 #
-if sys.platform == 'mac':
-    TOOLBOXDIR=os.path.join(sys.prefix, "Lib", "plat-mac", "Carbon")
-else:
-    TOOLBOXDIR="/Users/jack/src/python/Lib/plat-mac/Carbon"
+TOOLBOXDIR="/Users/jack/src/python/Lib/plat-mac/Carbon"
 
 # Creator for C files:
 CREATOR="CWIE"