diff options
author | Guido van Rossum <guido@python.org> | 2001-01-23 03:17:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-23 03:17:00 (GMT) |
commit | 1e33bdcb766c2a365d8e4b1fe826e3f6964756a2 (patch) | |
tree | b9fb8a8dcb2497d86c57bc3438257b700d385dee /Misc | |
parent | f33c118869fb399c43f5d23e91835de77a182e11 (diff) | |
download | cpython-1e33bdcb766c2a365d8e4b1fe826e3f6964756a2.zip cpython-1e33bdcb766c2a365d8e4b1fe826e3f6964756a2.tar.gz cpython-1e33bdcb766c2a365d8e4b1fe826e3f6964756a2.tar.bz2 |
Added notes about setup.py and cygwin build; removed note about
the previous auto-configuring modules feature (already obsolete :-).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -226,11 +226,18 @@ Standard library Build issues -- On Linux (and possibly other Unix platforms), the readline and - _curses modules are automatically configured through - Modules/Setup.config. These, and the bsddb module (which was - already dynamically configured) are now built as shared libraries by - default. +- For Unix (and Unix-compatible) builds, configuration and building of + extension modules is now greatly automated. Rather than having to + edit the Modules/Setup file to indicate which modules should be + built and where their include files and libraries are, a + distutils-based setup.py script now takes care of building most + extension modules. All extension modules built this way are built + as shared libraries. Only a few modules that must be linked + statically are still listed in the Setup file; you won't need to + edit their configuration. + +- Python should now build out of the box on Cygwin. If it doesn't, + mail to Jason Tishler (jlt63 at users.sourceforge.net). - Python now always uses its own (renamed) implementation of getopt() -- there's too much variation among C library getopt() |