home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Setup < prev    next >
Text File  |  2003-12-30  |  18KB  |  487 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.dist; 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 and *.dist files are in the source
  11. # directory.)
  12.  
  13. # Each line in this file describes one or more optional modules.
  14. # Modules enabled here will not be compiled by the setup.py script,
  15. # so the file can be used to override setup.py's behavior.
  16.  
  17. # Lines have the following structure:
  18. #
  19. # <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
  20. #
  21. # <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
  22. # <cpparg> is anything starting with -I, -D, -U or -C
  23. # <library> is anything ending in .a or beginning with -l or -L
  24. # <module> is anything else but should be a valid Python
  25. # identifier (letters, digits, underscores, beginning with non-digit)
  26. #
  27. # (As the makesetup script changes, it may recognize some other
  28. # arguments as well, e.g. *.so and *.sl as libraries.  See the big
  29. # case statement in the makesetup script.)
  30. #
  31. # Lines can also have the form
  32. #
  33. # <name> = <value>
  34. #
  35. # which defines a Make variable definition inserted into Makefile.in
  36. #
  37. # Finally, if a line contains just the word "*shared*" (without the
  38. # quotes but with the stars), then the following modules will not be
  39. # built statically.  The build process works like this:
  40. #
  41. # 1. Build all modules that are declared as static in Modules/Setup,
  42. #    combine them into libpythonxy.a, combine that into python.
  43. # 2. Build all modules that are listed as shared in Modules/Setup.
  44. # 3. Invoke setup.py. That builds all modules that
  45. #    a) are not builtin, and
  46. #    b) are not listed in Modules/Setup, and
  47. #    c) can be build on the target
  48. #
  49. # Therefore, modules declared to be shared will not be
  50. # included in the config.c file, nor in the list of objects to be
  51. # added to the library archive, and their linker options won't be
  52. # added to the linker options. Rules to create their .o files and
  53. # their shared libraries will still be added to the Makefile, and
  54. # their names will be collected in the Make variable SHAREDMODS.  This
  55. # is used to build modules as shared libraries.  (They can be
  56. # installed using "make sharedinstall", which is implied by the
  57. # toplevel "make install" target.)  (For compatibility,
  58. # *noconfig* has the same effect as *shared*.)
  59. #
  60. # In addition, *static* explicitly declares the following modules to
  61. # be static.  Lines containing "*static*" and "*shared*" may thus
  62. # alternate thoughout this file.
  63.  
  64. # NOTE: As a standard policy, as many modules as can be supported by a
  65. # platform should be present.  The distribution comes with all modules
  66. # enabled that are supported by most platforms and don't require you
  67. # to ftp sources from elsewhere.
  68.  
  69.  
  70. # Some special rules to define PYTHONPATH.
  71. # Edit the definitions below to indicate which options you are using.
  72. # Don't add any whitespace or comments!
  73.  
  74. # Directories where library files get installed.
  75. # DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
  76. DESTLIB=$(LIBDEST)
  77. MACHDESTLIB=$(BINLIBDEST)
  78.  
  79. # NOTE: all the paths are now relative to the prefix that is computed
  80. # at run time!
  81.  
  82. # Standard path -- don't edit.
  83. # No leading colon since this is the first entry.
  84. # Empty since this is now just the runtime prefix.
  85. DESTPATH=
  86.  
  87. # Site specific path components -- should begin with : if non-empty
  88. SITEPATH=
  89.  
  90. # Standard path components for test modules
  91. TESTPATH=
  92.  
  93. # Path components for machine- or system-dependent modules and shared libraries
  94. MACHDEPPATH=:plat-$(MACHDEP)
  95. EXTRAMACHDEPPATH=
  96.  
  97. # Path component for the Tkinter-related modules
  98. # The TKPATH variable is always enabled, to save you the effort.
  99. TKPATH=:lib-tk
  100.  
  101. COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(EXTRAMACHDEPPATH)$(TKPATH)
  102. PYTHONPATH=$(COREPYTHONPATH)
  103.  
  104.  
  105. # The modules listed here can't be built as shared libraries for
  106. # various reasons; therefore they are listed here instead of in the
  107. # normal order.
  108.  
  109. # This only contains the minimal set of modules required to run the 
  110. # setup.py script in the root of the Python source tree.
  111.  
  112. posix posixmodule.c        # posix (UNIX) system calls
  113. errno errnomodule.c        # posix (UNIX) errno values
  114. _sre _sre.c            # Fredrik Lundh's new regular expressions
  115. _codecs _codecsmodule.c        # access to the builtin codecs and codec registry
  116.  
  117. # The zipimport module is always imported at startup. Having it as a
  118. # builtin module avoids some bootstrapping problems and reduces overhead.
  119. zipimport zipimport.c
  120.  
  121. # The rest of the modules listed in this file are all commented out by
  122. # default.  Usually they can be detected and built as dynamically
  123. # loaded modules by the new setup.py script added in Python 2.1.  If
  124. # you're on a platform that doesn't support dynamic loading, want to 
  125. # compile modules statically into the Python binary, or need to 
  126. # specify some odd set of compiler switches, you can uncomment the 
  127. # appropriate lines below.
  128.  
  129. # ======================================================================
  130.  
  131. # The Python symtable module depends on .h files that setup.py doesn't track
  132. _symtable symtablemodule.c
  133.  
  134. # The SGI specific GL module:
  135.  
  136. GLHACK=-Dclear=__GLclear
  137. #gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
  138.  
  139. # Pure module.  Cannot be linked dynamically.
  140. # -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
  141. #WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
  142. #PURE_INCLS=-I/usr/local/include
  143. #PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
  144. #pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
  145.  
  146. # Uncommenting the following line tells makesetup that all following
  147. # modules are to be built as shared libraries (see above for more
  148. # detail; also note that *static* reverses this effect):
  149.  
  150. #*shared*
  151.  
  152. # GNU readline.  Unlike previous Python incarnations, GNU readline is
  153. # now incorporated in an optional module, configured in the Setup file
  154. # instead of by a configure script switch.  You may have to insert a
  155. # -L option pointing to the directory where libreadline.* lives,
  156. # and you may have to change -ltermcap to -ltermlib or perhaps remove
  157. # it, depending on your system -- see the GNU readline instructions.
  158. # It's okay for this to be a shared library, too.
  159.  
  160. #readline readline.c -lreadline -ltermcap
  161.  
  162.  
  163. # Modules that should always be present (non UNIX dependent):
  164.  
  165. #array arraymodule.c    # array objects
  166. #cmath cmathmodule.c # -lm # complex math library functions
  167. #math mathmodule.c # -lm # math library functions, e.g. sin()
  168. #struct structmodule.c    # binary structure packing/unpacking
  169. #time timemodule.c # -lm # time operations and variables
  170. #operator operator.c    # operator.add() and similar goodies
  171. #_weakref _weakref.c    # basic weak reference support
  172. #_testcapi _testcapimodule.c    # Python C API test module
  173.  
  174. #unicodedata unicodedata.c    # static Unicode character database
  175.  
  176. # access to ISO C locale support
  177. #_locale _localemodule.c  # -lintl
  178.  
  179.  
  180. # Modules with some UNIX dependencies -- on by default:
  181. # (If you have a really backward UNIX, select and socket may not be
  182. # supported...)
  183.  
  184. #fcntl fcntlmodule.c    # fcntl(2) and ioctl(2)
  185. #pwd pwdmodule.c        # pwd(3) 
  186. #grp grpmodule.c        # grp(3)
  187. #select selectmodule.c    # select(2); not on ancient System V
  188.  
  189. # Memory-mapped files (also works on Win32).
  190. #mmap mmapmodule.c
  191.  
  192. # Dynamic readlines
  193. #xreadlines xreadlinesmodule.c
  194.  
  195. # CSV file helper
  196. #_csv _csv.c
  197.  
  198. # Socket module helper for socket(2)
  199. #_socket socketmodule.c
  200.  
  201. # Socket module helper for SSL support; you must comment out the other
  202. # socket line above, and possibly edit the SSL variable:
  203. #SSL=/usr/local/ssl
  204. #_ssl _ssl.c \
  205. #    -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
  206. #    -L$(SSL)/lib -lssl -lcrypto
  207.  
  208. # The crypt module is now disabled by default because it breaks builds
  209. # on many systems (where -lcrypt is needed), e.g. Linux (I believe).
  210. #
  211. # First, look at Setup.config; configure may have set this for you.
  212.  
  213. #crypt cryptmodule.c # -lcrypt    # crypt(3); needs -lcrypt on some systems
  214.  
  215.  
  216. # Some more UNIX dependent modules -- off by default, since these
  217. # are not supported by all UNIX systems:
  218.  
  219. #nis nismodule.c -lnsl    # Sun yellow pages -- not everywhere
  220. #termios termios.c    # Steen Lumholt's termios module
  221. #resource resource.c    # Jeremy Hylton's rlimit interface
  222.  
  223.  
  224. # Multimedia modules -- off by default.
  225. # These don't work for 64-bit platforms!!!
  226. # These represent audio samples or images as strings:
  227.  
  228. #audioop audioop.c    # Operations on audio samples
  229. #imageop imageop.c    # Operations on images
  230. #rgbimg rgbimgmodule.c    # Read SGI RGB image files (but coded portably)
  231.  
  232.  
  233. # The md5 module implements the RSA Data Security, Inc. MD5
  234. # Message-Digest Algorithm, described in RFC 1321.  The necessary files
  235. # md5c.c and md5.h are included here.
  236.  
  237. #md5 md5module.c md5c.c
  238.  
  239.  
  240. # The sha module implements the SHA checksum algorithm.
  241. # (NIST's Secure Hash Algorithm.)
  242. #sha shamodule.c
  243.  
  244.  
  245. # The mpz module interfaces to the GNU Multiple Precision library.
  246. # You need to ftp the GNU MP library.  
  247. # The GMP variable must point to the GMP source directory.
  248. # This was originally written and tested against GMP 1.2 and 1.3.2.
  249. # It has been modified by Rob Hooft to work with 2.0.2 as well, but I
  250. # haven't tested it recently.
  251.  
  252. # A compatible MP library unencombered by the GPL also exists.  It was
  253. # posted to comp.sources.misc in volume 40 and is widely available from
  254. # FTP archive sites. One URL for it is:
  255. # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z
  256.  
  257. #GMP=/ufs/guido/src/gmp
  258. #mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a
  259.  
  260.  
  261. # SGI IRIX specific modules -- off by default.
  262.  
  263. # These module work on any SGI machine:
  264.  
  265. # *** gl must be enabled higher up in this file ***
  266. #fm fmmodule.c $(GLHACK) -lfm -lgl        # Font Manager
  267. #sgi sgimodule.c            # sgi.nap() and a few more
  268.  
  269. # This module requires the header file
  270. # /usr/people/4Dgifts/iristools/include/izoom.h:
  271. #imgfile imgfile.c -limage -lgutil -lgl -lm    # Image Processing Utilities
  272.  
  273.  
  274. # These modules require the Multimedia Development Option (I think):
  275.  
  276. #al almodule.c -laudio            # Audio Library
  277. #cd cdmodule.c -lcdaudio -lds -lmediad    # CD Audio Library
  278. #cl clmodule.c -lcl -lawareaudio    # Compression Library
  279. #sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11    # Starter Video
  280.  
  281.  
  282. # The FORMS library, by Mark Overmars, implements user interface
  283. # components such as dialogs and buttons using SGI's GL and FM
  284. # libraries.  You must ftp the FORMS library separately from
  285. # ftp://ftp.cs.ruu.nl/pub/SGI/FORMS.  It was tested with FORMS 2.2a.
  286. # NOTE: if you want to be able to use FORMS and curses simultaneously
  287. # (or both link them statically into the same binary), you must
  288. # compile all of FORMS with the cc option "-Dclear=__GLclear".
  289.  
  290. # The FORMS variable must point to the FORMS subdirectory of the forms
  291. # toplevel directory:
  292.  
  293. #FORMS=/ufs/guido/src/forms/FORMS
  294. #fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
  295.  
  296.  
  297. # SunOS specific modules -- off by default:
  298.  
  299. #sunaudiodev sunaudiodev.c
  300.  
  301.  
  302. # A Linux specific module -- off by default; this may also work on 
  303. # some *BSDs.
  304.  
  305. #linuxaudiodev linuxaudiodev.c
  306.  
  307.  
  308. # George Neville-Neil's timing module:
  309.  
  310. #timing timingmodule.c
  311.  
  312.  
  313. # The _tkinter module.
  314. #
  315. # The command for _tkinter is long and site specific.  Please
  316. # uncomment and/or edit those parts as indicated.  If you don't have a
  317. # specific extension (e.g. Tix or BLT), leave the corresponding line
  318. # commented out.  (Leave the trailing backslashes in!  If you
  319. # experience strange errors, you may want to join all uncommented
  320. # lines and remove the backslashes -- the backslash interpretation is
  321. # done by the shell's "read" command and it may not be implemented on
  322. # every system.
  323.  
  324. # *** Always uncomment this (leave the leading underscore in!):
  325. # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
  326. # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
  327. #    -L/usr/local/lib \
  328. # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
  329. #    -I/usr/local/include \
  330. # *** Uncomment and edit to reflect where your X11 header files are:
  331. #    -I/usr/X11R6/include \
  332. # *** Or uncomment this for Solaris:
  333. #    -I/usr/openwin/include \
  334. # *** Uncomment and edit for Tix extension only:
  335. #    -DWITH_TIX -ltix8.1.8.2 \
  336. # *** Uncomment and edit for BLT extension only:
  337. #    -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
  338. # *** Uncomment and edit for PIL (TkImaging) extension only:
  339. #     (See http://www.pythonware.com/products/pil/ for more info)
  340. #    -DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \
  341. # *** Uncomment and edit for TOGL extension only:
  342. #    -DWITH_TOGL togl.c \
  343. # *** Uncomment and edit to reflect your Tcl/Tk versions:
  344. #    -ltk8.2 -ltcl8.2 \
  345. # *** Uncomment and edit to reflect where your X11 libraries are:
  346. #    -L/usr/X11R6/lib \
  347. # *** Or uncomment this for Solaris:
  348. #    -L/usr/openwin/lib \
  349. # *** Uncomment these for TOGL extension only:
  350. #    -lGL -lGLU -lXext -lXmu \
  351. # *** Uncomment for AIX:
  352. #    -lld \
  353. # *** Always uncomment this; X11 libraries to link with:
  354. #    -lX11
  355.  
  356. # Lance Ellinghaus's modules:
  357.  
  358. #rotor rotormodule.c        # enigma-inspired encryption
  359. #syslog syslogmodule.c        # syslog daemon interface
  360.  
  361.  
  362. # Curses support, requring the System V version of curses, often
  363. # provided by the ncurses library.  e.g. on Linux, link with -lncurses
  364. # instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include
  365. # -L/usr/5lib before -lcurses).
  366. #
  367. # First, look at Setup.config; configure may have set this for you.
  368.  
  369. #_curses _cursesmodule.c -lcurses -ltermcap
  370. # Wrapper for the panel library that's part of ncurses and SYSV curses.
  371. #_curses_panel _curses_panel.c -lpanel -lncurses 
  372.  
  373.  
  374. # Generic (SunOS / SVR4) dynamic loading module.
  375. # This is not needed for dynamic loading of Python modules --
  376. # it is a highly experimental and dangerous device for calling
  377. # *arbitrary* C functions in *arbitrary* shared libraries:
  378.  
  379. #dl dlmodule.c
  380.  
  381.  
  382. # Modules that provide persistent dictionary-like semantics.  You will
  383. # probably want to arrange for at least one of them to be available on
  384. # your machine, though none are defined by default because of library
  385. # dependencies.  The Python module anydbm.py provides an
  386. # implementation independent wrapper for these; dumbdbm.py provides
  387. # similar functionality (but slower of course) implemented in Python.
  388.  
  389. # The standard Unix dbm module has been moved to Setup.config so that
  390. # it will be compiled as a shared library by default.  Compiling it as
  391. # a built-in module causes conflicts with the pybsddb3 module since it
  392. # creates a static dependency on an out-of-date version of db.so.
  393. #
  394. # First, look at Setup.config; configure may have set this for you.
  395.  
  396. #dbm dbmmodule.c     # dbm(3) may require -lndbm or similar
  397.  
  398. # Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm:
  399. #
  400. # First, look at Setup.config; configure may have set this for you.
  401.  
  402. #gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
  403.  
  404.  
  405. # Sleepycat Berkeley DB interface.
  406. #
  407. # This requires the Sleepycat DB code, see http://www.sleepycat.com/
  408. # The earliest supported version of that library is 3.0, the latest
  409. # supported version is 4.0 (4.1 is specifically not supported, as that
  410. # changes the semantics of transactional databases). A list of available
  411. # releases can be found at
  412. #
  413. # http://www.sleepycat.com/update/index.html
  414. #
  415. # Edit the variables DB and DBLIBVERto point to the db top directory
  416. # and the subdirectory of PORT where you built it.
  417. #DB=/usr/local/BerkeleyDB.4.0
  418. #DBLIBVER=4.0
  419. #DBINC=$(DB)/include
  420. #DBLIB=$(DB)/lib
  421. #_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
  422.  
  423. # Historical Berkeley DB 1.85
  424. #
  425. # This module is deprecated; the 1.85 version of the Berkeley DB library has
  426. # bugs that can cause data corruption. If you can, use later versions of the
  427. # library instead, available from <http://www.sleepycat.com/>.
  428.  
  429. #DB=/depot/sundry/src/berkeley-db/db.1.85
  430. #DBPORT=$(DB)/PORT/irix.5.3
  431. #bsddb185 bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a
  432.  
  433.  
  434.  
  435. # Helper module for various ascii-encoders
  436. #binascii binascii.c
  437.  
  438. # Fred Drake's interface to the Python parser
  439. #parser parsermodule.c
  440.  
  441. # cStringIO and cPickle
  442. #cStringIO cStringIO.c
  443. #cPickle cPickle.c
  444.  
  445.  
  446. # Lee Busby's SIGFPE modules.
  447. # The library to link fpectl with is platform specific.
  448. # Choose *one* of the options below for fpectl:
  449.  
  450. # For SGI IRIX (tested on 5.3):
  451. #fpectl fpectlmodule.c -lfpe
  452.  
  453. # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2):
  454. # (Without the compiler you don't have -lsunmath.)
  455. #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm
  456.  
  457. # For other systems: see instructions in fpectlmodule.c.
  458. #fpectl fpectlmodule.c ...
  459.  
  460. # Test module for fpectl.  No extra libraries needed.
  461. #fpetest fpetestmodule.c
  462.  
  463. # Andrew Kuchling's zlib module.
  464. # This require zlib 1.1.3 (or later).
  465. # See http://www.cdrom.com/pub/infozip/zlib/
  466. #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
  467.  
  468. # Interface to the Expat XML parser
  469. #
  470. # Expat was written by James Clark and is now maintained by a group of
  471. # developers on SourceForge; see www.libexpat.org for more
  472. # information.  The pyexpat module was written by Paul Prescod after a
  473. # prototype by Jack Jansen.  Source of Expat 1.95.2 is included in
  474. # Modules/expat/.  Usage of a system shared libexpat.so/expat.dll is
  475. # not advised.
  476. #
  477. # More information on Expat can be found at www.libexpat.org.
  478. #
  479. #EXPAT_DIR=/usr/local/src/expat-1.95.2
  480. #pyexpat pyexpat.c -DHAVE_EXPAT_H -I$(EXPAT_DIR)/lib -L$(EXPAT_DIR) -lexpat
  481.  
  482. # Example -- included for reference only:
  483. # xx xxmodule.c
  484.  
  485. # Another example -- the 'xxsubtype' module shows C-level subtyping in action
  486. xxsubtype xxsubtype.c
  487.