Commit 50f147a9 authored by Nick Coghlan's avatar Nick Coghlan

Issue #15044: Handle Fedora 17's approach to ndbm compatibility

parent 02653f1b
...@@ -1077,10 +1077,14 @@ class PyBuildExt(build_ext): ...@@ -1077,10 +1077,14 @@ class PyBuildExt(build_ext):
for cand in dbm_order: for cand in dbm_order:
if cand == "ndbm": if cand == "ndbm":
if find_file("ndbm.h", inc_dirs, []) is not None: if find_file("ndbm.h", inc_dirs, []) is not None:
# Some systems have -lndbm, others don't # Some systems have -lndbm, others have -lgdbm_compat,
# others don't have either
if self.compiler.find_library_file(lib_dirs, if self.compiler.find_library_file(lib_dirs,
'ndbm'): 'ndbm'):
ndbm_libs = ['ndbm'] ndbm_libs = ['ndbm']
elif self.compiler.find_library_file(lib_dirs,
'gdbm_compat'):
ndbm_libs = ['gdbm_compat']
else: else:
ndbm_libs = [] ndbm_libs = []
print("building dbm using ndbm") print("building dbm using ndbm")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment