home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Python20_source / Modules / Setup.config.in < prev    next >
Encoding:
Text File  |  2000-10-25  |  623 b   |  20 lines

  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.  
  7. @USE_THREAD_MODULE@thread threadmodule.c
  8.  
  9. # Garbage collection enabled with --with-cycle-gc
  10. @USE_GC_MODULE@gc gcmodule.c
  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
  18. @USE_BSDDB_MODULE@bsddb bsddbmodule.c @HAVE_LIBDB@
  19.  
  20.