| 
									
										
										
										
											1997-09-04 13:05:14 +00:00
										 |  |  | # -*- makefile -*- | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | # The file Setup is used by the makesetup script to construct the files | 
					
						
							|  |  |  | # Makefile and config.c, from Makefile.pre and config.c.in, | 
					
						
							|  |  |  | # respectively.  The file Setup itself is initially copied from | 
					
						
							|  |  |  | # Setup.in; once it exists it will not be overwritten, so you can edit | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Setup to your heart's content.  Note that Makefile.pre is created | 
					
						
							|  |  |  | # from Makefile.pre.in by the toplevel configure script. | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # (VPATH notes: Setup and Makefile.pre are in the build directory, as | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # are Makefile and config.c; the *.in files are in the source | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | # directory.) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | # Each line in this file describes one or more optional modules. | 
					
						
							|  |  |  | # Comment out lines to suppress modules. | 
					
						
							|  |  |  | # Lines have the following structure: | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | # <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...] | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | # <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files) | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | # <cpparg> is anything starting with -I, -D, -U or -C | 
					
						
							|  |  |  | # <library> is anything ending in .a or beginning with -l or -L | 
					
						
							|  |  |  | # <module> is anything else but should be a valid Python | 
					
						
							|  |  |  | # identifier (letters, digits, underscores, beginning with non-digit) | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											1996-08-20 19:50:17 +00:00
										 |  |  | # (As the makesetup script changes, it may recognize some other | 
					
						
							|  |  |  | # arguments as well, e.g. *.so and *.sl as libraries.  See the big | 
					
						
							|  |  |  | # case statement in the makesetup script.) | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | # Lines can also have the form | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # <name> = <value> | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # which defines a Make variable definition inserted into Makefile.in | 
					
						
							| 
									
										
										
										
											1994-09-12 10:42:20 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											1997-12-02 16:46:39 +00:00
										 |  |  | # Finally, if a line contains just the word "*shared*" (without the | 
					
						
							|  |  |  | # quotes but with the stars), then the following modules will not be | 
					
						
							|  |  |  | # included in the config.c file, nor in the list of objects to be | 
					
						
							|  |  |  | # added to the library archive, and their linker options won't be | 
					
						
							|  |  |  | # added to the linker options, but rules to create their .o files and | 
					
						
							|  |  |  | # their shared libraries will still be added to the Makefile, and | 
					
						
							|  |  |  | # their names will be collected in the Make variable SHAREDMODS.  This | 
					
						
							|  |  |  | # is used to build modules as shared libraries.  (They must be | 
					
						
							|  |  |  | # installed using "make sharedinstall".)  (For compatibility, | 
					
						
							|  |  |  | # *noconfig* has the same effect as *shared*.) | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | # NOTE: As a standard policy, as many modules as can be supported by a | 
					
						
							|  |  |  | # platform should be present.  The distribution comes with all modules | 
					
						
							|  |  |  | # enabled that are supported by most platforms and don't require you | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # to ftp sources from elsewhere. | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | # Some special rules to define PYTHONPATH. | 
					
						
							|  |  |  | # Edit the definitions below to indicate which options you are using. | 
					
						
							|  |  |  | # Don't add any whitespace or comments! | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-31 17:49:01 +00:00
										 |  |  | # Directories where library files get installed. | 
					
						
							|  |  |  | # DESTLIB is for Python modules; MACHDESTLIB for shared libraries. | 
					
						
							|  |  |  | DESTLIB=$(LIBDEST) | 
					
						
							|  |  |  | MACHDESTLIB=$(BINLIBDEST) | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-11 17:19:54 +00:00
										 |  |  | # NOTE: all the paths are now relative to the prefix that is computed | 
					
						
							|  |  |  | # at run time! | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-31 17:49:01 +00:00
										 |  |  | # Standard path -- don't edit. | 
					
						
							| 
									
										
										
										
											1997-04-11 17:19:54 +00:00
										 |  |  | # No leading colon since this is the first entry. | 
					
						
							|  |  |  | # Empty since this is now just the runtime prefix. | 
					
						
							|  |  |  | DESTPATH= | 
					
						
							| 
									
										
										
										
											1995-09-13 18:39:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-31 17:49:01 +00:00
										 |  |  | # Site specific path components -- should begin with : if non-empty | 
					
						
							|  |  |  | SITEPATH= | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Standard path components for test modules | 
					
						
							| 
									
										
										
										
											1997-04-11 17:19:54 +00:00
										 |  |  | TESTPATH=:test | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-30 16:54:03 +00:00
										 |  |  | # Path components for machine- or system-dependent modules and shared libraries | 
					
						
							| 
									
										
										
										
											1997-09-28 05:45:40 +00:00
										 |  |  | MACHDEPPATH=:plat-$(MACHDEP) | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-30 20:36:59 +00:00
										 |  |  | COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)$(MACHDEPPATH)$(STDWINPATH)$(TKPATH) | 
					
						
							| 
									
										
										
										
											1994-09-12 15:35:36 +00:00
										 |  |  | PYTHONPATH=$(COREPYTHONPATH) | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-03-10 15:14:13 +00:00
										 |  |  | # The modules listed here can't be built as shared libraries for | 
					
						
							|  |  |  | # various reasons; therefore they are listed here instead of in the | 
					
						
							|  |  |  | # normal order. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Some modules that are normally always on: | 
					
						
							| 
									
										
										
										
											1995-03-10 15:14:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-07-11 18:40:46 +00:00
										 |  |  | regex regexmodule.c regexpr.c	# Regular expressions, GNU Emacs style | 
					
						
							| 
									
										
										
										
											1997-10-07 16:17:55 +00:00
										 |  |  | pcre pcremodule.c pypcre.c	# Regular expressions, Perl style (for re.py) | 
					
						
							| 
									
										
										
										
											1995-03-10 15:14:13 +00:00
										 |  |  | posix posixmodule.c		# posix (UNIX) system calls | 
					
						
							|  |  |  | signal signalmodule.c		# signal(2) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # The SGI specific GL module: | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 16:07:45 +00:00
										 |  |  | #gl glmodule.c cgensupport.c -I$(srcdir) -lgl -lX11 | 
					
						
							| 
									
										
										
										
											1995-03-10 15:14:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-04 00:48:27 +00:00
										 |  |  | # The thread module is now automatically enabled, see Setup.thread. | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-17 00:01:33 +00:00
										 |  |  | # Pure module.  Cannot be linked dynamically. | 
					
						
							|  |  |  | # -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE | 
					
						
							|  |  |  | #WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE | 
					
						
							|  |  |  | #PURE_INCLS=-I/usr/local/include | 
					
						
							|  |  |  | #PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs | 
					
						
							|  |  |  | #pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | # Uncommenting the following line tells makesetup that all following | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # modules are to be built as shared libraries (see above for more | 
					
						
							|  |  |  | # detail): | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-20 19:50:17 +00:00
										 |  |  | #*shared* | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-05 21:27:50 +00:00
										 |  |  | # GNU readline.  Unlike previous Python incarnations, GNU readline is | 
					
						
							|  |  |  | # now incorporated in an optional module, configured in the Setup file | 
					
						
							|  |  |  | # instead of by a configure script switch.  You may have to insert a | 
					
						
							|  |  |  | # -L option pointing to the directory where libreadline.* lives, | 
					
						
							|  |  |  | # and you may have to change -ltermcap to -ltermlib or perhaps remove | 
					
						
							|  |  |  | # it, depending on your system -- see the GNU readline instructions. | 
					
						
							|  |  |  | # It's okay for this to be a shared library, too. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #readline readline.c -lreadline -ltermcap | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Modules that should always be present (non UNIX dependent): | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | array arraymodule.c	# array objects | 
					
						
							| 
									
										
										
										
											1996-08-20 19:50:17 +00:00
										 |  |  | cmath cmathmodule.c # -lm # complex math library functions | 
					
						
							|  |  |  | math mathmodule.c # -lm # math library functions, e.g. sin() | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | strop stropmodule.c	# fast string operations implemented in C | 
					
						
							|  |  |  | struct structmodule.c	# binary structure packing/unpacking | 
					
						
							| 
									
										
										
										
											1996-08-20 19:50:17 +00:00
										 |  |  | time timemodule.c # -lm # time operations and variables | 
					
						
							| 
									
										
										
										
											1996-07-30 16:54:03 +00:00
										 |  |  | operator operator.c	# operator.add() and similar goodies | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-11-19 18:57:48 +00:00
										 |  |  | #_locale _localemodule.c  # access to ISO C locale support | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Modules with some UNIX dependencies -- on by default: | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | # (If you have a really backward UNIX, select and socket may not be | 
					
						
							|  |  |  | # supported...) | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | fcntl fcntlmodule.c	# fcntl(2) and ioctl(2) | 
					
						
							|  |  |  | pwd pwdmodule.c		# pwd(3)  | 
					
						
							|  |  |  | grp grpmodule.c		# grp(3) | 
					
						
							|  |  |  | select selectmodule.c	# select(2); not on ancient System V | 
					
						
							|  |  |  | socket socketmodule.c	# socket(2); not on ancient System V | 
					
						
							| 
									
										
										
										
											1998-08-04 22:53:56 +00:00
										 |  |  | #_socket socketmodule.c	# socket(2); use this one for BeOS sockets | 
					
						
							| 
									
										
										
										
											1996-07-30 16:54:03 +00:00
										 |  |  | errno errnomodule.c	# posix (UNIX) errno values | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-02 03:23:01 +00:00
										 |  |  | # The crypt module is now disabled by default because it breaks builds | 
					
						
							|  |  |  | # on many systems (where -lcrypt is needed), e.g. Linux (I believe). | 
					
						
							|  |  |  | #crypt cryptmodule.c # -lcrypt	# crypt(3); needs -lcrypt on some systems | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | # Some more UNIX dependent modules -- off by default, since these | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # are not supported by all UNIX systems: | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | #nis nismodule.c 	# Sun yellow pages -- not everywhere | 
					
						
							| 
									
										
										
										
											1994-09-12 10:42:20 +00:00
										 |  |  | #termios termios.c	# Steen Lumholt's termios module | 
					
						
							| 
									
										
										
										
											1996-12-18 18:37:27 +00:00
										 |  |  | #resource resource.c	# Jeremy Hylton's rlimit interface | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-09-03 00:44:14 +00:00
										 |  |  | # Multimedia modules -- off by default. | 
					
						
							| 
									
										
										
										
											1997-11-22 17:35:19 +00:00
										 |  |  | # These don't work for 64-bit platforms!!! | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # These represent audio samples or images as strings: | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-09-03 00:44:14 +00:00
										 |  |  | #audioop audioop.c	# Operations on audio samples | 
					
						
							|  |  |  | #imageop imageop.c	# Operations on images | 
					
						
							|  |  |  | #rgbimg rgbimgmodule.c   # Read SGI RGB image files (but coded portably) | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The stdwin module provides a simple, portable (between X11 and Mac) | 
					
						
							|  |  |  | # windowing interface.  You need to ftp the STDWIN library, e.g. from | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # ftp://ftp.cwi.nl/pub/stdwin.  (If you get it elsewhere, be sure to | 
					
						
							|  |  |  | # get version 1.0 or higher!)  The STDWIN variable must point to the | 
					
						
							|  |  |  | # STDWIN toplevel directory. | 
					
						
							| 
									
										
										
										
											1995-03-10 15:14:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Uncomment and edit as needed: | 
					
						
							|  |  |  | #STDWIN=/ufs/guido/src/stdwin | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Uncomment these lines: | 
					
						
							| 
									
										
										
										
											1997-09-08 01:54:43 +00:00
										 |  |  | #STDWINPATH=:lib-stdwin | 
					
						
							| 
									
										
										
										
											1994-09-12 10:42:20 +00:00
										 |  |  | #LIBTEXTEDIT=$(STDWIN)/$(MACHDEP)/Packs/textedit/libtextedit.a | 
					
						
							|  |  |  | #LIBX11STDWIN=$(STDWIN)/$(MACHDEP)/Ports/x11/libstdwin.a | 
					
						
							|  |  |  | #stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBX11STDWIN) -lX11 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Use this instead of the last two lines above for alphanumeric stdwin: | 
					
						
							|  |  |  | #LIBALFASTDWIN=$(STDWIN)/$(MACHDEP)/Ports/alfa/libstdwin.a | 
					
						
							| 
									
										
										
										
											1994-09-12 10:42:20 +00:00
										 |  |  | #stdwin stdwinmodule.c -I$(STDWIN)/H $(LIBTEXTEDIT) $(LIBALFASTDWIN) -ltermcap | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # The md5 module implements the RSA Data Security, Inc. MD5 | 
					
						
							|  |  |  | # Message-Digest Algorithm, described in RFC 1321.  The necessary files | 
					
						
							|  |  |  | # md5c.c and md5.h are included here. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | md5 md5module.c md5c.c | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The mpz module interfaces to the GNU Multiple Precision library. | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | # You need to ftp the GNU MP library.   | 
					
						
							|  |  |  | # The GMP variable must point to the GMP source directory. | 
					
						
							| 
									
										
										
										
											1996-08-19 23:06:45 +00:00
										 |  |  | # This was originally written and tested against GMP 1.2 and 1.3.2. | 
					
						
							|  |  |  | # It has been modified by Rob Hooft to work with 2.0.2 as well, but I | 
					
						
							|  |  |  | # haven't tested it recently. | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-10-06 16:12:06 +00:00
										 |  |  | # A compatible MP library unencombered by the GPL also exists.  It was | 
					
						
							|  |  |  | # posted to comp.sources.misc in volume 40 and is widely available from | 
					
						
							|  |  |  | # FTP archive sites. One URL for it is: | 
					
						
							|  |  |  | # ftp://gatekeeper.dec.com/.b/usenet/comp.sources.misc/volume40/fgmp/part01.Z | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | #GMP=/ufs/guido/src/gmp | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | #mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # SGI IRIX specific modules -- off by default. | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # These module work on any SGI machine: | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-03-10 15:14:13 +00:00
										 |  |  | # *** gl must be enabled higher up in this file *** | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | #fm fmmodule.c -lfm -lgl		# Font Manager | 
					
						
							|  |  |  | #sgi sgimodule.c			# sgi.nap() and a few more | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # This module requires the header file | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # /usr/people/4Dgifts/iristools/include/izoom.h: | 
					
						
							| 
									
										
										
										
											1997-05-05 20:48:00 +00:00
										 |  |  | #imgfile imgfile.c -limage -lgutil -lgl -lm	# Image Processing Utilities | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # These modules require the Multimedia Development Option (I think): | 
					
						
							| 
									
										
										
										
											1994-10-20 22:01:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #al almodule.c -laudio			# Audio Library | 
					
						
							|  |  |  | #cd cdmodule.c -lcdaudio -lds -lmediad	# CD Audio Library | 
					
						
							|  |  |  | #cl clmodule.c -lcl -lawareaudio	# Compression Library | 
					
						
							|  |  |  | #sv svmodule.c yuvconvert.c -lsvideo -lXext -lX11	# Starter Video | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # The FORMS library, by Mark Overmars, implements user interface | 
					
						
							|  |  |  | # components such as dialogs and buttons using SGI's GL and FM | 
					
						
							|  |  |  | # libraries.  You must ftp the FORMS library separately from | 
					
						
							|  |  |  | # ftp://ftp.cs.ruu.nl/pub/SGI/FORMS.  It was tested with FORMS 2.2a. | 
					
						
							|  |  |  | # The FORMS variable must point to the FORMS subdirectory of the forms | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # toplevel directory: | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #FORMS=/ufs/guido/src/forms/FORMS | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | #fl flmodule.c -I$(FORMS) $(FORMS)/libforms.a -lfm -lgl | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # SunOS specific modules -- off by default: | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | #sunaudiodev sunaudiodev.c | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # George Neville-Neil's timing module: | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #timing timingmodule.c | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-08 19:08:47 +00:00
										 |  |  | # The _tkinter module. | 
					
						
							| 
									
										
										
										
											1995-02-14 09:43:25 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											1997-11-22 17:35:19 +00:00
										 |  |  | # The TKPATH variable is always enabled, to save you the effort. | 
					
						
							|  |  |  | TKPATH=:lib-tk | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The command for _tkinter is long and site specific.  Please | 
					
						
							|  |  |  | # uncomment and/or edit those parts as indicated.  If you don't have a | 
					
						
							|  |  |  | # specific extension (e.g. Tix or BLT), leave the corresponding line | 
					
						
							|  |  |  | # commented out.  (Leave the trailing backslashes in!  If you | 
					
						
							|  |  |  | # experience strange errors, you may want to join all uncommented | 
					
						
							|  |  |  | # lines and remove the backslashes -- the backslash interpretation is | 
					
						
							|  |  |  | # done by the shell's "read" command and it may not be implemented on | 
					
						
							|  |  |  | # every system. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # *** Always uncomment this (leave the leading underscore in!): | 
					
						
							|  |  |  | # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \ | 
					
						
							| 
									
										
										
										
											1997-12-02 03:23:01 +00:00
										 |  |  | # *** Uncomment and edit to reflect where your X11 header files are: | 
					
						
							| 
									
										
										
										
											1997-11-22 17:35:19 +00:00
										 |  |  | #	-I/usr/X11R6/include \ | 
					
						
							|  |  |  | # *** Or uncomment this for Solaris: | 
					
						
							|  |  |  | #	-I/usr/openwin/include \ | 
					
						
							|  |  |  | # *** Uncomment and edit to reflect where your Tcl/Tk headers are: | 
					
						
							|  |  |  | #	-I/usr/local/include \ | 
					
						
							|  |  |  | # *** Uncomment and edit for Tix extension only: | 
					
						
							|  |  |  | #	-DWITH_TIX -ltix4.1.8.0 \ | 
					
						
							|  |  |  | # *** Uncomment and edit for BLT extension only: | 
					
						
							|  |  |  | #	-DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \ | 
					
						
							|  |  |  | # *** Uncomment and edit for PIL (TkImaging) extension only: | 
					
						
							|  |  |  | #	-DWITH_PIL -I../Extensions/Imaging/libImaging  tkImaging.c \ | 
					
						
							|  |  |  | # *** Uncomment and edit for TOGL extension only: | 
					
						
							|  |  |  | #	-DWITH_TOGL togl.c \ | 
					
						
							|  |  |  | # *** Uncomment and edit to reflect where your Tcl/Tk libraries are: | 
					
						
							|  |  |  | #	-L/usr/local/lib \ | 
					
						
							|  |  |  | # *** Uncomment and edit to reflect your Tcl/Tk versions: | 
					
						
							|  |  |  | #	-ltk8.0 -ltcl8.0 \ | 
					
						
							|  |  |  | # *** Uncomment and edit to reflect where your X11 libraries are: | 
					
						
							|  |  |  | #	-L/usr/X11R6/lib \ | 
					
						
							|  |  |  | # *** Or uncomment this for Solaris: | 
					
						
							|  |  |  | #	-L/usr/openwin/lib \ | 
					
						
							| 
									
										
										
										
											1997-12-02 03:23:01 +00:00
										 |  |  | # *** Uncomment these for TOGL extension only: | 
					
						
							|  |  |  | #	-lGL -lGLU -lXext -lXmu \ | 
					
						
							| 
									
										
										
										
											1997-12-16 18:12:30 +00:00
										 |  |  | # *** Uncomment for AIX: | 
					
						
							|  |  |  | #	-lld \ | 
					
						
							| 
									
										
										
										
											1997-11-22 17:35:19 +00:00
										 |  |  | # *** Always uncomment this; X11 libraries to link with: | 
					
						
							| 
									
										
										
										
											1997-12-02 03:23:01 +00:00
										 |  |  | #	-lX11 | 
					
						
							| 
									
										
										
										
											1994-09-07 14:32:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Lance Ellinghaus's modules: | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-07 14:32:49 +00:00
										 |  |  | rotor rotormodule.c		# enigma-inspired encryption | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | #syslog syslogmodule.c		# syslog daemon interface | 
					
						
							| 
									
										
										
										
											1995-07-26 17:31:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Lance's curses module.  This requires the System V version of | 
					
						
							|  |  |  | # curses, sometimes known as ncurses (e.g. on Linux, link with | 
					
						
							| 
									
										
										
										
											1995-08-04 04:20:45 +00:00
										 |  |  | # -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include | 
					
						
							|  |  |  | # -L/usr/5lib before -lcurses). | 
					
						
							| 
									
										
										
										
											1995-07-26 17:31:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #curses cursesmodule.c -lcurses -ltermcap | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Tommy Burnette's 'new' module (creates new empty objects of certain kinds): | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #new newmodule.c | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-12 11:29:01 +00:00
										 |  |  | # Generic (SunOS / SVR4) dynamic loading module. | 
					
						
							|  |  |  | # This is not needed for dynamic loading of Python modules -- | 
					
						
							|  |  |  | # it is a highly experimental and dangerous device for calling | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # *arbitrary* C functions in *arbitrary* shared libraries: | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #dl dlmodule.c | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-11 16:20:36 +00:00
										 |  |  | # Modules that provide persistent dictionary-like semantics.  You will | 
					
						
							|  |  |  | # probably want to arrange for at least one of them to be available on | 
					
						
							|  |  |  | # your machine, though none are defined by default because of library | 
					
						
							|  |  |  | # dependencies.  The Python module anydbm.py provides an | 
					
						
							|  |  |  | # implementation independent wrapper for these; dumbdbm.py provides | 
					
						
							|  |  |  | # similar functionality (but slower of course) implemented in Python. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # The standard Unix dbm module: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #dbm dbmmodule.c 	# dbm(3) may require -lndbm or similar | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Anthony Baxter's gdbm module.  GNU dbm(3) will require -lgdbm: | 
					
						
							| 
									
										
										
										
											1994-09-21 12:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm | 
					
						
							| 
									
										
										
										
											1994-08-08 08:06:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-01-02 00:26:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-28 02:59:06 +00:00
										 |  |  | # Berkeley DB interface. | 
					
						
							| 
									
										
										
										
											1995-07-18 18:18:11 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # This requires the Berkeley DB code, see | 
					
						
							|  |  |  | # ftp://ftp.cs.berkeley.edu/pub/4bsd/db.1.85.tar.gz | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Edit the variables DB and DBPORT to point to the db top directory | 
					
						
							|  |  |  | # and the subdirectory of PORT where you built it. | 
					
						
							| 
									
										
										
										
											1997-08-05 02:25:24 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # (See http://www.jenkon-dev.com/~rd/python/ for an interface to | 
					
						
							|  |  |  | # BSD DB 2.1.0.) | 
					
						
							| 
									
										
										
										
											1995-07-18 18:18:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-24 00:42:42 +00:00
										 |  |  | #DB=/depot/sundry/src/berkeley-db/db.1.85 | 
					
						
							|  |  |  | #DBPORT=$(DB)/PORT/irix.5.3 | 
					
						
							| 
									
										
										
										
											1997-07-11 18:40:46 +00:00
										 |  |  | #bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a | 
					
						
							| 
									
										
										
										
											1995-07-18 18:18:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-10 20:44:11 +00:00
										 |  |  | # David Wayne Williams' soundex module (obsolete -- this will disappear!) | 
					
						
							| 
									
										
										
										
											1995-06-14 22:31:38 +00:00
										 |  |  | #soundex soundex.c | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-07 14:34:15 +00:00
										 |  |  | # Helper module for various ascii-encoders | 
					
						
							| 
									
										
										
										
											1995-10-12 00:41:40 +00:00
										 |  |  | binascii binascii.c | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 22:11:54 +00:00
										 |  |  | # Fred Drake's interface to the Python parser | 
					
						
							|  |  |  | parser parsermodule.c | 
					
						
							| 
									
										
										
										
											1995-08-07 14:34:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-11 19:29:30 +00:00
										 |  |  | # Digital Creations' cStringIO and cPickle | 
					
						
							|  |  |  | cStringIO cStringIO.c | 
					
						
							|  |  |  | cPickle cPickle.c | 
					
						
							| 
									
										
										
										
											1995-06-14 22:31:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-03-04 23:36:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-14 23:03:31 +00:00
										 |  |  | # Lee Busby's SIGFPE modules. | 
					
						
							|  |  |  | # The library to link fpectl with is platform specific. | 
					
						
							| 
									
										
										
										
											1997-03-04 23:36:04 +00:00
										 |  |  | # Choose *one* of the options below for fpectl: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # For SGI IRIX (tested on 5.3): | 
					
						
							|  |  |  | #fpectl fpectlmodule.c -lfpe | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-03-04 23:44:15 +00:00
										 |  |  | # For Solaris with SunPro compiler (tested on Solaris 2.5 with SunPro C 4.2): | 
					
						
							|  |  |  | # (Without the compiler you don't have -lsunmath.) | 
					
						
							| 
									
										
										
										
											1997-03-04 23:36:04 +00:00
										 |  |  | #fpectl fpectlmodule.c -R/opt/SUNWspro/lib -lsunmath -lm | 
					
						
							| 
									
										
										
										
											1997-02-14 23:03:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-03-04 23:36:04 +00:00
										 |  |  | # For other systems: see instructions in fpectlmodule.c. | 
					
						
							|  |  |  | #fpectl fpectlmodule.c ... | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Test module for fpectl.  No extra libraries needed. | 
					
						
							| 
									
										
										
										
											1997-02-14 23:03:31 +00:00
										 |  |  | #fpetest fpetestmodule.c | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 15:41:26 +00:00
										 |  |  | # Andrew Kuchling's zlib module. | 
					
						
							| 
									
										
										
										
											1998-03-03 16:42:53 +00:00
										 |  |  | # This require zlib 1.0.4 (or later).  See http://quest.jpl.nasa.gov/zlib/ | 
					
						
							| 
									
										
										
										
											1998-02-06 22:36:10 +00:00
										 |  |  | # See http://www.cdrom.com/pub/infozip/zlib/ | 
					
						
							| 
									
										
										
										
											1997-05-05 20:48:00 +00:00
										 |  |  | #zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz | 
					
						
							| 
									
										
										
										
											1997-04-29 15:41:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-03-04 23:36:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-10 11:37:18 +00:00
										 |  |  | # Example -- included for reference only: | 
					
						
							| 
									
										
										
										
											1994-08-30 12:25:20 +00:00
										 |  |  | # xx xxmodule.c |