diff options
| author | Skip Montanaro <skip@pobox.com> | 2008-12-07 02:16:00 (GMT) |
|---|---|---|
| committer | Skip Montanaro <skip@pobox.com> | 2008-12-07 02:16:00 (GMT) |
| commit | 4f7f77b7a5b6a51a126e5d96355477ab0ce58aa0 (patch) | |
| tree | d9f59ba5ca88a6e90795160c0aa73b8b691d442d | |
| parent | ae5beceb35384da8eed64940e5632d62c4907576 (diff) | |
| download | cpython-4f7f77b7a5b6a51a126e5d96355477ab0ce58aa0.zip cpython-4f7f77b7a5b6a51a126e5d96355477ab0ce58aa0.tar.gz cpython-4f7f77b7a5b6a51a126e5d96355477ab0ce58aa0.tar.bz2 | |
muffed the default case
| -rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1033,9 +1033,8 @@ class PyBuildExt(build_ext): 'dbm', ['dbmmodule.c'], define_macros=[('HAVE_GDBM_DASH_NDBM_H',None)], libraries = gdbm_libs ) ) - exts.append( Extension('dbm', ['dbmmodule.c'], - define_macros=[('HAVE_GDBM_NDBM_H',None)], - libraries = ['gdbm'] ) ) + else: + missing.append('dbm') elif db_incs is not None: exts.append( Extension('dbm', ['dbmmodule.c'], library_dirs=dblib_dir, |
