[Danny Meidell wrote]
> Hi,
> 
> Has anyone out there had any luck compiling the _socket.pyd module
> from ActivePython against the OpenSSL libraries on Win32?
> 
> Any pointers in the right direction would be appreciated.

You could try this:
- get the ActivePython sources (or the Python 2.2 ones would almost
  certainly suffice as well)
- get the OpenSSL sources and compile them
- rebuild _socket.dsp with something like this:
    set CL=/D "USE_SSL" /I "..\..\openssl\inc32"
    set LINK=..\..\openssl\out32dll\ssleay32.lib ..\..\openssl\out32dll\libeay32.lib
    msdev pcbuild.dsw /MAKE "_socket - Win32 Release" /USEENV
- plop the new _socket.pyd and the relevant OpenSSL DLLs into your
  ActivePython installation

YMMV.

Cheers,
Trent

-- 
Trent Mick
[EMAIL PROTECTED]
_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Reply via email to