This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hfuru
Recipients
Date 2004-05-25.19:07:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I'd like to be able to configure Python so that
Configure or Make will fail if a particular
feature is unavailable.  Currently I'm concerned
with SSL, which just gets a warning from Make:

  building '_ssl' extension
  *** WARNING: renaming "_ssl" since importing it
failed: ld.so.1: ./python: fatal: libssl.so.0.9.8: open
failed: No such file or directory

Since that's buried in a lot of Make output, it's
easy to miss.  Besides, for semi-automatic builds
it's in any case good to get a non-success exit
status from the build process.

Looking at the Make output, I see the bz2 extension
is another example where this might be useful.

Maybe the option would simply be '--enable-ssl',
unless you want that to merely try to build with
ssl.

Or '--require=ssl,bz2,...'.
History
Date User Action Args
2007-08-23 16:08:08adminlinkissue960325 messages
2007-08-23 16:08:08admincreate