diff options
author | Guido van Rossum <guido@python.org> | 1997-07-11 18:40:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-11 18:40:46 (GMT) |
commit | 007c80e5b7f4da404bf3682a3a0cf67e24135c73 (patch) | |
tree | c2e11e8c1793f161578de60980820191eafbd70c /Modules/Setup.in | |
parent | 105bd989e36ae0968cdd871a47e9001bb3644ac3 (diff) | |
download | cpython-007c80e5b7f4da404bf3682a3a0cf67e24135c73.zip cpython-007c80e5b7f4da404bf3682a3a0cf67e24135c73.tar.gz cpython-007c80e5b7f4da404bf3682a3a0cf67e24135c73.tar.bz2 |
Added reop (moved reop and regex to non-shared section).
Added -I$(DBPORT) for bsddb compilation line.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index b2214cf..d0a5c70 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -92,6 +92,8 @@ PYTHONPATH=$(COREPYTHONPATH) # Some modules that are normally always on: +regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style +reop reopmodule.c # Additional RE support (also needs regexpr.c) posix posixmodule.c # posix (UNIX) system calls signal signalmodule.c # signal(2) @@ -124,7 +126,6 @@ signal signalmodule.c # signal(2) array arraymodule.c # array objects cmath cmathmodule.c # -lm # complex math library functions math mathmodule.c # -lm # math library functions, e.g. sin() -regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style strop stropmodule.c # fast string operations implemented in C struct structmodule.c # binary structure packing/unpacking time timemodule.c # -lm # time operations and variables @@ -308,7 +309,7 @@ rotor rotormodule.c # enigma-inspired encryption #DB=/depot/sundry/src/berkeley-db/db.1.85 #DBPORT=$(DB)/PORT/irix.5.3 -#bsddb bsddbmodule.c -I$(DBPORT)/include $(DBPORT)/libdb.a +#bsddb bsddbmodule.c -I$(DBPORT)/include -I$(DBPORT) $(DBPORT)/libdb.a |