Skip to content

Commit 3712d39

Browse files
committed
Patch python#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
1 parent ba77fc8 commit 3712d39

2 files changed

Lines changed: 7 additions & 392 deletions

File tree

Modules/Setup.config.in

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,5 @@
99
# Threading
1010
@USE_THREAD_MODULE@thread threadmodule.c
1111

12-
# You may want the following to be built as statically loaded modules;
13-
# comment out the *shared* line in that case:
14-
15-
*shared*
16-
17-
# Readline
18-
@USE_READLINE_MODULE@readline readline.c -lreadline -ltermcap
19-
20-
# The ncurses library, under Linux
21-
@USE_NCURSES_MODULE@_curses _cursesmodule.c -lncurses -ltermcap
22-
23-
# bsddb(3) module enabled by --with-libdb or presence of db.h
24-
@USE_BSDDB_MODULE@bsddb bsddbmodule.c @HAVE_LIBDB@
25-
26-
# dbm(3) may require -lndbm or similar
27-
@USE_DBM_MODULE@dbm dbmmodule.c @HAVE_LIBNDBM@
28-
29-
# ndbm(3) may require -lndbm or similar
30-
@USE_NDBM_MODULE@ndbm ndbmmodule.c @HAVE_LIBNDBM@
31-
32-
# gdbm(3) may require -lgdbm or similar
33-
@USE_GDBM_MODULE@gdbm gdbmmodule.c @HAVE_LIBGDBM@
34-
35-
# crypt(3) may require -lcrypt or similar
36-
@USE_CRYPT_MODULE@crypt cryptmodule.c @HAVE_LIBCRYPT@
37-
12+
# The rest of the modules previously listed in this file are built
13+
# by the setup.py script in Python 2.1.

0 commit comments

Comments
 (0)