diff options
author | Barry Warsaw <barry@python.org> | 2001-01-15 17:07:21 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-01-15 17:07:21 (GMT) |
commit | a57b89b4926bf49052ebd8a6401059e0a5368139 (patch) | |
tree | 3819ce08f5a1f6edd16efcb3e9af096ed4d12023 /Modules/Setup.config.in | |
parent | e13be40b889619af8c26d7d19e924e7babcbb683 (diff) | |
download | cpython-a57b89b4926bf49052ebd8a6401059e0a5368139.zip cpython-a57b89b4926bf49052ebd8a6401059e0a5368139.tar.gz cpython-a57b89b4926bf49052ebd8a6401059e0a5368139.tar.bz2 |
Committing patch #103216, autodetect of dbmmodule support and building
of dbmmodule dynamically by default (otherwise it can pull in
dependencies with libdb that croak pybsddb3). This change moves the
Setup line for dbmmodule to Setup.config.in.
Diffstat (limited to 'Modules/Setup.config.in')
-rw-r--r-- | Modules/Setup.config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Setup.config.in b/Modules/Setup.config.in index 424099f..6f62b77 100644 --- a/Modules/Setup.config.in +++ b/Modules/Setup.config.in @@ -22,3 +22,6 @@ # bsddb module enabled by --with-libdb or presence of db.h @USE_BSDDB_MODULE@bsddb bsddbmodule.c @HAVE_LIBDB@ + +# dbm(3) may require -lndbm or similar +@USE_DBM_MODULE@dbm dbmmodule.c @HAVE_LIBNDBM@ |