Patch by Chris Herborth:

BeOS headers live in various non-standard places;
luckily, there's an environment variable that lists them all.
This commit is contained in:
Guido van Rossum 1998-12-17 18:02:15 +00:00
parent fc4966b7af
commit 5cd975c678
1 changed files with 7 additions and 1 deletions

View File

@ -46,7 +46,13 @@
try:
searchdirs=string.splitfields(os.environ['INCLUDE'],';')
except KeyError:
searchdirs=['/usr/include']
try:
if string.find( sys.platform, "beos" ) == 0:
searchdirs=string.splitfields(os.environ['BEINCLUDES'],';')
else:
raise KeyError
except KeyError:
searchdirs=['/usr/include']
def main():
global filedict