diff options
author | Guido van Rossum <guido@python.org> | 1999-02-22 18:11:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-02-22 18:11:18 (GMT) |
commit | b71c570f01304a82aa3402723ef5ff7ddeea5c24 (patch) | |
tree | 83b9a36c51403691bdb9342750745a27a9df5069 | |
parent | 00a3a65cc024eb8ca96907f52b31dcb954f4d9b5 (diff) | |
download | cpython-b71c570f01304a82aa3402723ef5ff7ddeea5c24.zip cpython-b71c570f01304a82aa3402723ef5ff7ddeea5c24.tar.gz cpython-b71c570f01304a82aa3402723ef5ff7ddeea5c24.tar.bz2 |
Document *static* -- in two places!
-rw-r--r-- | Modules/Setup.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 7f38d9f..43e175b 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -43,6 +43,9 @@ # installed using "make sharedinstall", which is implied by the # toplevel "make install" target.) (For compatibility, # *noconfig* has the same effect as *shared*.) +# +# In addition, *static* reverses this effect (negating a previous +# *shared* line). # NOTE: As a standard policy, as many modules as can be supported by a # platform should be present. The distribution comes with all modules @@ -107,7 +110,7 @@ GLHACK=-Dclear=__GLclear # Uncommenting the following line tells makesetup that all following # modules are to be built as shared libraries (see above for more -# detail): +# detail; also note that *static* reverses this effect): #*shared* |