On Sat, 22 Mar 2003, David R. Morrison wrote:
> > Somewhere in the 2.x releases, python picked up ssl socket support, > > Do you know if there is any way to disable this? Well, I've not had time to test anything but here are some ideas: try configuring with: ./configure --without-ssl I'm not optimistic, but that makes sense, and the configure didn't bomb when I did it. Otherwise, it looks like you might be able to modify setup.py in the top dir after the tar ball is expanded. On line 352 and line 357 (for me, I think setup.py might be generated from configure so it might be different for you) the variables ssl_incs and ssl_libs are set. It looks like if they're set to None, it might not build the ssl support. You might try manually setting them to None. (If you're not a pythonphile, None is the state of a variable before anything is assigned...a null pointer). If that doesn't work, let me know...I might poke about some more. They don't seem to document it well, and I've googled to no avail. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Fink-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-devel
