diff options
author | Barry Warsaw <barry@python.org> | 1997-01-17 00:01:33 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-01-17 00:01:33 (GMT) |
commit | e886ea916ec1a4a5c3f4247ea5978b626620cf67 (patch) | |
tree | 3e16a3b7af64b70c3d91dccf25ff742e76306e32 /Modules/Setup.in | |
parent | bb779ec4d92b89c39ce0ea752c1ba3f26c80c0ea (diff) | |
download | cpython-e886ea916ec1a4a5c3f4247ea5978b626620cf67.zip cpython-e886ea916ec1a4a5c3f4247ea5978b626620cf67.tar.gz cpython-e886ea916ec1a4a5c3f4247ea5978b626620cf67.tar.bz2 |
(puremodule.c): New module which exports the Purify and Quantify C API
to Python. Minimal documentation is included in comments at the top
of the file, and in the Misc/PURIFY.README file. Note that this
module must be statically linked since Pure doesn't provide shared
stubs libraries.
(Setup.in): Added commented template for pure module
(syslogmodule.c): ins() function wasn't declared static.
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index c9becb2..94f0c4b 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -101,6 +101,13 @@ signal signalmodule.c # signal(2) #thread threadmodule.c +# 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) + # Uncommenting the following line tells makesetup that all following # modules are to be built as shared libraries (see above for more # detail): |