Patch by Jack Jansen to add with_ifdef option, which places #ifndef

around external decls.
This commit is contained in:
Guido van Rossum 1999-09-30 14:12:44 +00:00
parent a856d9f450
commit 8bd738278e
1 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import regex
never = ['marshal', '__main__', '__builtin__', 'sys']
def makeconfig(infp, outfp, modules):
def makeconfig(infp, outfp, modules, with_ifdef=0):
m1 = regex.compile('-- ADDMODULE MARKER 1 --')
m2 = regex.compile('-- ADDMODULE MARKER 2 --')
while 1:
@ -17,7 +17,11 @@ def makeconfig(infp, outfp, modules):
for mod in modules:
if mod in never:
continue
if with_ifdef:
outfp.write("#ifndef init%s\n"%mod)
outfp.write('extern void init%s();\n' % mod)
if with_ifdef:
outfp.write("#endif\n")
elif m2 and m2.search(line) >= 0:
m2 = None
for mod in modules: