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