diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-31 16:11:07 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-31 16:11:07 +0000 |
commit | c9cb84703b016ec6d273d979aee6a6a8763846d9 (patch) | |
tree | 795b93889517903e0b23612ab7b9d62561fabfbd /Modules/Setup.config.in | |
parent | 6102e29df28fa0707752875e23445ef1d84d5b10 (diff) | |
download | cpython-git-c9cb84703b016ec6d273d979aee6a6a8763846d9.tar.gz |
Skip Montanaro <skip@mojam.com>:
Update the build structures to automatically detect the presence of BSD db,
including the proper name of the header file to include. Has all the
expected niceties associated with yet-more-configure-options. ;)
This checkin includes changes for non-generated files only; subsequent
checkin will catch those.
This is part of SourceForge patch #101272.
Diffstat (limited to 'Modules/Setup.config.in')
-rw-r--r-- | Modules/Setup.config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/Setup.config.in b/Modules/Setup.config.in index 8558fb4448..1f208bdfa8 100644 --- a/Modules/Setup.config.in +++ b/Modules/Setup.config.in @@ -8,3 +8,12 @@ # Garbage collection enabled with --with-cycle-gc @USE_GC_MODULE@gc gcmodule.c + +# You may want this to be built as a dynamically loaded module; uncomment +# the following line in that case: + +#*shared* + +# bsddb module enabled by --with-libdb or presence of db.h +@USE_BSDDB_MODULE@bsddb bsddbmodule.c -ldb + |