Barry Warsaw | 257543c | 2000-06-30 16:12:15 +0000 | [diff] [blame] | 1 | # This file is transmogrified into Setup.config by config.status. |
| 2 | |
| 3 | # The purpose of this file is to conditionally enable certain modules |
| 4 | # based on configure-time options. Currently thread support and |
| 5 | # garbage collection support are the only two modules so enabled. |
| 6 | |
Barry Warsaw | 257543c | 2000-06-30 16:12:15 +0000 | [diff] [blame] | 7 | @USE_THREAD_MODULE@thread threadmodule.c |
| 8 | |
| 9 | # Garbage collection enabled with --with-cycle-gc |
| 10 | @USE_GC_MODULE@gc gcmodule.c |
Fred Drake | c9cb847 | 2000-08-31 16:11:07 +0000 | [diff] [blame] | 11 | |
| 12 | # You may want this to be built as a dynamically loaded module; uncomment |
| 13 | # the following line in that case: |
| 14 | |
| 15 | #*shared* |
| 16 | |
| 17 | # bsddb module enabled by --with-libdb or presence of db.h |
Skip Montanaro | ed33c9a | 2000-09-08 02:17:15 +0000 | [diff] [blame] | 18 | @USE_BSDDB_MODULE@bsddb bsddbmodule.c @HAVE_LIBDB@ |
Fred Drake | c9cb847 | 2000-08-31 16:11:07 +0000 | [diff] [blame] | 19 | |