diff options
author | Guido van Rossum <guido@python.org> | 1997-05-05 20:48:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-05 20:48:00 (GMT) |
commit | d3d6f8ffad5def807f62bb56e4f421aa2e92e5b4 (patch) | |
tree | 66405421801c2bccd007e8bb598e7743d8c00c9b /Modules | |
parent | 4a43cc67db876c070cd7d81691719b0210160a57 (diff) | |
download | cpython-d3d6f8ffad5def807f62bb56e4f421aa2e92e5b4.zip cpython-d3d6f8ffad5def807f62bb56e4f421aa2e92e5b4.tar.gz cpython-d3d6f8ffad5def807f62bb56e4f421aa2e92e5b4.tar.bz2 |
Add -lgl and -lm for imgfile. Better way to configure zlib.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Setup.in | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 83e3131..9c9a0dd 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -214,8 +214,7 @@ md5 md5module.c md5c.c # This module requires the header file # /usr/people/4Dgifts/iristools/include/izoom.h: - -#imgfile imgfile.c -limage -lgutil # Image Processing Utilities +#imgfile imgfile.c -limage -lgutil -lgl -lm # Image Processing Utilities # These modules require the Multimedia Development Option (I think): @@ -345,11 +344,8 @@ cPickle cPickle.c #fpetest fpetestmodule.c # Andrew Kuchling's zlib module. -# This require zlib 1.0.4. See http://quest.jpl.nasa.gov/zlib/ -# Edit the ZLIBHOME variable to point to the place where you built zlib. -# If you installed libzlib.a, replace the last argument with -lz -#ZLIBHOME=.. -#zlib zlibmodule.c -I$(ZLIBHOME) -L$(ZLIBHOME) -lz +# This require zlib 1.0.4 (or later). See http://quest.jpl.nasa.gov/zlib/ +#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz # Example -- included for reference only: |