mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
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:
parent
fc4966b7af
commit
5cd975c678
1 changed files with 7 additions and 1 deletions
|
@ -46,7 +46,13 @@ except KeyError:
|
||||||
try:
|
try:
|
||||||
searchdirs=string.splitfields(os.environ['INCLUDE'],';')
|
searchdirs=string.splitfields(os.environ['INCLUDE'],';')
|
||||||
except KeyError:
|
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():
|
def main():
|
||||||
global filedict
|
global filedict
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue