Commit 254c91cd authored by Guido van Rossum's avatar Guido van Rossum

Changed the occurrence of *shared* in the example so people won't

accidentally uncomment it...
parent 2c29e5fe
...@@ -32,19 +32,16 @@ ...@@ -32,19 +32,16 @@
# #
# which defines a Make variable definition inserted into Makefile.in # which defines a Make variable definition inserted into Makefile.in
# #
# Finally, if a line has the literal form # Finally, if a line contains just the word "*shared*" (without the
# # quotes but with the stars), then the following modules will not be
# *shared* # 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
# (that is including the '*' and '*' !) then the following modules will # added to the linker options, but rules to create their .o files and
# not be included in the config.c file, nor in the list of objects to be # their shared libraries will still be added to the Makefile, and
# added to the library archive, and their linker options won't be added # their names will be collected in the Make variable SHAREDMODS. This
# to the linker options, but rules to create their .o files and their # is used to build modules as shared libraries. (They must be
# shared libraries will still be added to the Makefile, and their # installed using "make sharedinstall".) (For compatibility,
# names will be collected in the Make variable SHAREDMODS. This is # *noconfig* has the same effect as *shared*.)
# used to build modules as shared libraries. (They must be installed
# using "make sharedinstall".) (For compatibility, *noconfig* has the
# same effect as *shared*.)
# NOTE: As a standard policy, as many modules as can be supported by a # NOTE: As a standard policy, as many modules as can be supported by a
# platform should be present. The distribution comes with all modules # platform should be present. The distribution comes with all modules
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment