blob: 424099fdec8b494fe47161d74425f39bb17f5b79 [file] [log] [blame]
Barry Warsaw257543c2000-06-30 16:12:15 +00001# This file is transmogrified into Setup.config by config.status.
2
3# The purpose of this file is to conditionally enable certain modules
Guido van Rossum3d15bd82001-01-10 18:53:48 +00004# based on configure-time options.
Barry Warsaw257543c2000-06-30 16:12:15 +00005
6# Garbage collection enabled with --with-cycle-gc
7@USE_GC_MODULE@gc gcmodule.c
Fred Drakec9cb8472000-08-31 16:11:07 +00008
Guido van Rossum3d15bd82001-01-10 18:53:48 +00009# Threading
10@USE_THREAD_MODULE@thread threadmodule.c
Fred Drakec9cb8472000-08-31 16:11:07 +000011
Guido van Rossum3d15bd82001-01-10 18:53:48 +000012# 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
Fred Drakec9cb8472000-08-31 16:11:07 +000022
23# bsddb module enabled by --with-libdb or presence of db.h
Skip Montanaroed33c9a2000-09-08 02:17:15 +000024@USE_BSDDB_MODULE@bsddb bsddbmodule.c @HAVE_LIBDB@