home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Python20_source / Amiga_Misc / test / Setup < prev   
Encoding:
Text File  |  1998-02-23  |  13.9 KB  |  399 lines

  1. # -*- makefile -*-
  2. # The file Setup is used by the makesetup script to construct the files
  3. # Makefile and config.c, from Makefile.pre and config.c.in,
  4. # respectively.  The file Setup itself is initially copied from
  5. # Setup.in; once it exists it will not be overwritten, so you can edit
  6. # Setup to your heart's content.  Note that Makefile.pre is created
  7. # from Makefile.pre.in by the toplevel configure script.
  8.  
  9. # (VPATH notes: Setup and Makefile.pre are in the build directory, as
  10. # are Makefile and config.c; the *.in files are in the source
  11. # directory.)
  12.  
  13. # Each line in this file describes one or more optional modules.
  14. # Comment out lines to suppress modules.
  15. # Lines have the following structure:
  16. #
  17. # <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
  18. #
  19. # <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
  20. # <cpparg> is anything starting with -I, -D, -U or -C
  21. # <library> is anything ending in .a or beginning with -l or -L
  22. # <module> is anything else but should be a valid Python
  23. # identifier (letters, digits, underscores, beginning with non-digit)
  24. #
  25. # (As the makesetup script changes, it may recognize some other
  26. # arguments as well, e.g. *.so and *.sl as libraries.  See the big
  27. # case statement in the makesetup script.)
  28. #
  29. # Lines can also have the form
  30. #
  31. # <name> = <value>
  32. #
  33. # which defines a Make variable definition inserted into Makefile.in
  34. #
  35. # Finally, if a line contains just the word "*shared*" (without the
  36. # quotes but with the stars), then the following modules will not be
  37. # included in the config.c file, nor in the list of objects to be
  38. # added to the library archive, and their linker options won't be
  39. # added to the linker options, but rules to create their .o files and
  40. # their shared libraries will still be added to the Makefile, and
  41. # their names will be collected in the Make variable SHAREDMODS.  This
  42. # is used to build modules as shared libraries.  (They must be
  43. # installed using "make sharedinstall".)  (For compatibility,
  44. # *noconfig* has the same effect as *shared*.)
  45.  
  46. # NOTE: As a standard policy, as many modules as can be supported by a
  47. # platform should be present.  The distribution comes with all modules
  48. # enabled that are supported by most platforms and don't require you
  49. # to ftp sources from elsewhere.
  50.  
  51.  
  52. # Some special rules to define PYTHONPATH.
  53. # Edit the definitions below to indicate which options you are using.
  54. # Don't add any whitespace or comments!
  55.  
  56. # Directories where library files get installed.
  57. # DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
  58. DESTLIB=$(LIBDEST)
  59. MACHDESTLIB=$(BINLIBDEST)
  60.  
  61. # NOTE: all the paths are now relative to the prefix that is computed
  62. # at run time!
  63.  
  64. # Standard path -- don't edit.
  65. # No leading colon since this is the first entry.
  66. # Empty since this is now just the runtime prefix.
  67. DESTPATH=
  68.  
  69. # Site specific path components -- should begin with : if non-empty
  70. SITEPATH=
  71.  
  72. # Standard path components for test modules
  73. TESTPATH=:test
  74.  
  75. # Path components for machine- or system-dependent modules and shared libraries
  76. MACHDEPPATH=:plat-$(MACHDEP)
  77.  
  78. COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH)
  79. PYTHONPATH=$(COREPYTHONPATH)
  80.  
  81.  
  82. # The modules listed here can't be built as shared libraries for
  83. # various reasons; therefore they are listed here instead of in the
  84. # normal order.
  85.  
  86. # Some modules that are normally always on:
  87.  
  88. regex regexmodule.c regexpr.c    # Regular expressions, GNU Emacs style
  89. reop reopmodule.c        # Additional RE support (for re1.py)
  90. pcre pcremodule.c pypcre.c    # Regular expressions, Perl style (for re.py)
  91. posix posixmodule.c        # posix (UNIX) system calls
  92. signal signalmodule.c        # signal(2)
  93.  
  94. # The SGI specific GL module:
  95.  
  96. #gl glmodule.c cgensupport.c -I$(srcdir) -lgl -lX11
  97.  
  98. # The thread module is now automatically enabled, see Setup.thread.
  99.  
  100. # Pure module.  Cannot be linked dynamically.
  101. # -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
  102. #WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
  103. #PURE_INCLS=-I/usr/local/include
  104. #PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
  105. #pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
  106.  
  107. # Uncommenting the following line tells makesetup that all following
  108. # modules are to be built as shared libraries (see above for more
  109. # detail):
  110.  
  111. #*shared*
  112.  
  113. # GNU readline.  Unlike previous Python incarnations, GNU readline is
  114. # now incorporated in an optional module, configured in the Setup file
  115. # instead of by a configure script switch.  You may have to insert a
  116. # -L option pointing to the directory where libreadline.* lives,
  117. # and you may have to change -ltermcap to -ltermlib or perhaps remove
  118. # it, depending on your system -- see the GNU readline instructions.
  119. # It's okay for this to be a shared library, too.
  120.  
  121. #readline readline.c -lreadline -ltermcap
  122.  
  123.  
  124. # Modules that should always be present (non UNIX dependent):
  125.  
  126. array arraymodule.c    # array objects
  127. cmath cmathmodule.c # -lm # complex math library functions
  128. math mathmodule.c # -lm # math library functions, e.g. sin()
  129. strop stropmodule.c    # fast string operations implemented in C
  130. struct structmodule.c    # binary structure packing/unpacking
  131. time timemodule.c # -lm # time operations and variables
  132. operator operator.c    # operator.add() and similar goodies
  133.  
  134. #_locale _localemodule.c  # access to ISO C locale support
  135.  
  136.  
  137. # Modules with some UNIX dependencies -- on by default:
  138. # (If you have a really backward UNIX, select and socket may not be
  139. # supported...)
  140.  
  141. fcntl fcntlmodule.c    # fcntl(2) and ioctl(2)
  142. pwd pwdmodule.c        # pwd(3) 
  143. grp grpmodule.c        # grp(3)
  144. select selectmodule.c    # select(2); not on ancient System V
  145. socket socketmodule.c    # socket(2); not on ancient System V
  146. errno errnomodule.c    # posix (UNIX) errno values
  147.  
  148. # The crypt module is now disabled by default because it breaks builds
  149. # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
  150. #crypt cryptmodule.c # -lcrypt    # crypt(3); needs -lcrypt on some systems
  151.  
  152.  
  153. # Some more UNIX dependent modules -- off by default, since these
  154. # are not supported by all UNIX systems:
  155.  
  156. #nis nismodule.c     # Sun yellow pages -- not everywhere
  157. #termios termios.c    # Steen Lumholt's termios module
  158. #resource resource.c    # Jeremy Hylton's rlimit interface
  159.  
  160.  
  161. # Multimedia modules -- off by default.
  162. # These don't work for 64-bit platforms!!!
  163. # These represent audio samples or images as strings:
  164.  
  165. #audioop audioop.c    # Operations on audio samples
  166. #imageop imageop.c    # Operations on images
  167. #rgbimg rgbimgmodule.c   # Read SGI RGB image files (but coded portably)
  168.  
  169.  
  170. # The stdwin module provides a simple, portable (between X11 and Mac)
  171. # windowing interface.  You need to ftp the STDWIN library, e.g. from
  172. # ftp://ftp.cwi.nl/pub/stdwin.  (If you get it elsewhere, be sure to
  173. # get version 1.0 or higher!)  The STDWIN variable must point to the
  174. # STDWIN toplevel directory.
  175.  
  176. # Uncomment and edit as needed:
  177. #STDWIN=/ufs/guido/src/stdwin
  178.  
  179. # Uncomment these lines:
  180. #STDWINPATH=:lib-stdwin
  181. #LIBTEXTEDIT=$(STDWIN)/$(MACHDEP)/Packs/textedit/libtextedit.a
  182. #LIBX11STDWIN=$(STDWIN)/$(MACHDEP)/Ports/x11/libstdwin.a
  183. #stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBX11STDWIN) -lX11
  184.  
  185. # Use this instead of the last two lines above for alphanumeric stdwin:
  186. #LIBALFASTDWIN=$(STDWIN)/$(MACHDEP)/Ports/alfa/libstdwin.a
  187. #stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBALFASTDWIN) -ltermcap
  188.  
  189.  
  190. # The md5 module implements the RSA Data Security, Inc. MD5
  191. # Message-Digest Algorithm, described in RFC 1321.  The necessary files
  192. # md5c.c and md5.h are included here.
  193.  
  194. md5 md5module.c md5c.c
  195.  
  196.  
  197. # The mpz module interfaces to the GNU Multiple Precision library.
  198. # You need to ftp the GNU MP library.  
  199. # The GMP variable must point to the GMP source directory.
  200. # This was originally written and tested against GMP 1.2 and 1.3.2.
  201. # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
  202. # haven't tested it recently.
  203.  
  204. # A compatible MP library unencombered by the GPL also exists.  It was
  205. # posted to comp.sources.misc in volume 40 and is widely available from
  206. # FTP archive sites. One URL for it is:
  207. # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
  208.  
  209. #GMP=/ufs/guido/src/gmp
  210. #mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
  211.  
  212.  
  213. # SGI IRIX specific modules -- off by default.
  214.  
  215. # These module work on any SGI machine:
  216.  
  217. # *** gl must be enabled higher up in this file ***
  218. #fm fmmodule.c -lfm -lgl        # Font Manager
  219. #sgi sgimodule.c            # sgi.nap() and a few more
  220.  
  221. # This module requires the header file
  222. # /usr/people/4Dgifts/iristools/include/izoom.h:
  223. #imgfile imgfile.c -limage -lgutil -lgl -lm    # Image Processing Utilities
  224.  
  225.  
  226. # These modules require the Multimedia Development Option (I think):
  227.  
  228. #al almodule.c -laudio            # Audio Library
  229. #cd cdmodule.c -lcdaudio -lds -lmediad    # CD Audio Library
  230. #cl clmodule.c -lcl -lawareaudio    # Compression Library
  231. #sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11    # Starter Video
  232.  
  233.  
  234. # The FORMS library, by Mark Overmars, implements user interface
  235. # components such as dialogs and buttons using SGI's GL and FM
  236. # libraries.  You must ftp the FORMS library separately from
  237. # ftp://ftp.cs.ruu.nl/pub/SGI/FORMS.  It was tested with FORMS 2.2a.
  238. # The FORMS variable must point to the FORMS subdirectory of the forms
  239. # toplevel directory:
  240.  
  241. #FORMS=/ufs/guido/src/forms/FORMS
  242. #fl flmodule.c -I$(FORMS) $(FORMS)/libforms.a -lfm -lgl
  243.  
  244.  
  245. # SunOS specific modules -- off by default:
  246.  
  247. #sunaudiodev sunaudiodev.c
  248.  
  249.  
  250. # George Neville-Neil's timing module:
  251.  
  252. #timing timingmodule.c
  253.  
  254.  
  255. # The _tkinter module.
  256. #
  257. # The TKPATH variable is always enabled, to save you the effort.
  258. TKPATH=:lib-tk
  259.  
  260. # The command for _tkinter is long and site specific.  Please
  261. # uncomment and/or edit those parts as indicated.  If you don't have a
  262. # specific extension (e.g. Tix or BLT), leave the corresponding line
  263. # commented out.  (Leave the trailing backslashes in!  If you
  264. # experience strange errors, you may want to join all uncommented
  265. # lines and remove the backslashes -- the backslash interpretation is
  266. # done by the shell's "read" command and it may not be implemented on
  267. # every system.
  268.  
  269. # *** Always uncomment this (leave the leading underscore in!):
  270. # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
  271. # *** Uncomment and edit to reflect where your X11 header files are:
  272. #    -I/usr/X11R6/include \
  273. # *** Or uncomment this for Solaris:
  274. #    -I/usr/openwin/include \
  275. # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
  276. #    -I/usr/local/include \
  277. # *** Uncomment and edit for Tix extension only:
  278. #    -DWITH_TIX -ltix4.1.8.0 \
  279. # *** Uncomment and edit for BLT extension only:
  280. #    -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
  281. # *** Uncomment and edit for PIL (TkImaging) extension only:
  282. #    -DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
  283. # *** Uncomment and edit for TOGL extension only:
  284. #    -DWITH_TOGL togl.c \
  285. # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
  286. #    -L/usr/local/lib \
  287. # *** Uncomment and edit to reflect your Tcl/Tk versions:
  288. #    -ltk8.0 -ltcl8.0 \
  289. # *** Uncomment and edit to reflect where your X11 libraries are:
  290. #    -L/usr/X11R6/lib \
  291. # *** Or uncomment this for Solaris:
  292. #    -L/usr/openwin/lib \
  293. # *** Uncomment these for TOGL extension only:
  294. #    -lGL -lGLU -lXext -lXmu \
  295. # *** Uncomment for AIX:
  296. #    -lld \
  297. # *** Always uncomment this; X11 libraries to link with:
  298. #    -lX11
  299.  
  300. # Lance Ellinghaus's modules:
  301.  
  302. rotor rotormodule.c        # enigma-inspired encryption
  303. #syslog syslogmodule.c        # syslog daemon interface
  304.  
  305.  
  306. # Lance's curses module.  This requires the System V version of
  307. # curses, sometimes known as ncurses (e.g. on Linux, link with
  308. # -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
  309. # -L/usr/5lib before -lcurses).
  310.  
  311. #curses cursesmodule.c -lcurses -ltermcap
  312.  
  313.  
  314.  
  315. # Tommy Burnette's 'new' module (creates new empty objects of certain kinds):
  316.  
  317. #new newmodule.c
  318.  
  319.  
  320. # Generic (SunOS / SVR4) dynamic loading module.
  321. # This is not needed for dynamic loading of Python modules --
  322. # it is a highly experimental and dangerous device for calling
  323. # *arbitrary* C functions in *arbitrary* shared libraries:
  324.  
  325. #dl dlmodule.c
  326.  
  327.  
  328. # Modules that provide persistent dictionary-like semantics.  You will
  329. # probably want to arrange for at least one of them to be available on
  330. # your machine, though none are defined by default because of library
  331. # dependencies.  The Python module anydbm.py provides an
  332. # implementation independent wrapper for these; dumbdbm.py provides
  333. # similar functionality (but slower of course) implemented in Python.
  334.  
  335. # The standard Unix dbm module:
  336.  
  337. #dbm dbmmodule.c     # dbm(3) may require -lndbm or similar
  338.  
  339. # Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
  340.  
  341. #gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  342.  
  343.  
  344. # Berkeley DB interface.
  345. #
  346. # This requires the Berkeley DB code, see
  347. # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz
  348. #
  349. # Edit the variables DB and DBPORT to point to the db top directory
  350. # and the subdirectory of PORT where you built it.
  351. #
  352. # (See http://www.jenkon-dev.com/~rd/python/ for an interface to
  353. # BSD DB 2.1.0.)
  354.  
  355. #DB=/depot/sundry/src/berkeley-db/db.1.85
  356. #DBPORT=$(DB)/PORT/irix.5.3
  357. #bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
  358.  
  359.  
  360.  
  361. # David Wayne Williams' soundex module
  362. #soundex soundex.c
  363.  
  364. # Helper module for various ascii-encoders
  365. binascii binascii.c
  366.  
  367. # Fred Drake's interface to the Python parser
  368. parser parsermodule.c
  369.  
  370. # Digital Creations' cStringIO and cPickle
  371. cStringIO cStringIO.c
  372. cPickle cPickle.c
  373.  
  374.  
  375. # Lee Busby's SIGFPE modules.
  376. # The library to link fpectl with is platform specific.
  377. # Choose *one* of the options below for fpectl:
  378.  
  379. # For SGI IRIX (tested on 5.3):
  380. #fpectl fpectlmodule.c -lfpe
  381.  
  382. # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
  383. # (Without the compiler you don't have -lsunmath.)
  384. #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
  385.  
  386. # For other systems: see instructions in fpectlmodule.c.
  387. #fpectl fpectlmodule.c ...
  388.  
  389. # Test module for fpectl.  No extra libraries needed.
  390. #fpetest fpetestmodule.c
  391.  
  392. # Andrew Kuchling's zlib module.
  393. # This require zlib 1.0.4 (or later).  See http://quest.jpl.nasa.gov/zlib/
  394. #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  395.  
  396.  
  397. # Example -- included for reference only:
  398. # xx xxmodule.c
  399.