summaryrefslogtreecommitdiffstats
path: root/Modules/Setup.config.in
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-01-17 18:55:13 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-01-17 18:55:13 (GMT)
commit3712d396ac787232a41e7b14410072f455c4c97e (patch)
tree53e91affbd7ace3f85fe0426277184a03f66db10 /Modules/Setup.config.in
parentba77fc8cf093722b2905963f263fb572ebdb38df (diff)
downloadcpython-3712d396ac787232a41e7b14410072f455c4c97e.zip
cpython-3712d396ac787232a41e7b14410072f455c4c97e.tar.gz
cpython-3712d396ac787232a41e7b14410072f455c4c97e.tar.bz2
Patch #102588 / PEP 229:
The final piece of this change... Strip down Setup.config.in and Setup.dist to the minimal sets required to get a working Python; setup.py will handle the rest
Diffstat (limited to 'Modules/Setup.config.in')
-rw-r--r--Modules/Setup.config.in28
1 files changed, 2 insertions, 26 deletions
diff --git a/Modules/Setup.config.in b/Modules/Setup.config.in
index 2932d3c..b9b7a1e 100644
--- a/Modules/Setup.config.in
+++ b/Modules/Setup.config.in
@@ -9,29 +9,5 @@
# Threading
@USE_THREAD_MODULE@thread threadmodule.c
-# You may want the following to be built as statically loaded modules;
-# comment out the *shared* line in that case:
-
-*shared*
-
-# Readline
-@USE_READLINE_MODULE@readline readline.c -lreadline -ltermcap
-
-# The ncurses library, under Linux
-@USE_NCURSES_MODULE@_curses _cursesmodule.c -lncurses -ltermcap
-
-# bsddb(3) 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@
-
-# ndbm(3) may require -lndbm or similar
-@USE_NDBM_MODULE@ndbm ndbmmodule.c @HAVE_LIBNDBM@
-
-# gdbm(3) may require -lgdbm or similar
-@USE_GDBM_MODULE@gdbm gdbmmodule.c @HAVE_LIBGDBM@
-
-# crypt(3) may require -lcrypt or similar
-@USE_CRYPT_MODULE@crypt cryptmodule.c @HAVE_LIBCRYPT@
-
+# The rest of the modules previously listed in this file are built
+# by the setup.py script in Python 2.1.