Relevance: 0.9.7c, MinGW
Calling tool dllwrap in ms/mingw32.bat currently creates DLLs out of
static libraries in the current directory, instead of where they belong
("./out"). The attached SourceForge patch 816957 for ms/mingw32.bat fixes
the issue by moving the DLLs into the right place afterwards.
--- ms\mingw32.bat 2003-10-02 21:56:20.000000000 -0600
+++ ms\mingw32.bat.new 2003-10-02 22:07:32.000000000 -0600
@@ -81,8 +81,10 @@
echo Generating the DLLs and input libraries
dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def
out/libcrypto.a -lwsock32 -lgdi32
if errorlevel 1 goto end
+move /y libeay32.dll out
dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def
out/libssl.a out/libeay32.a
if errorlevel 1 goto end
+move /y libssl32.dll out
echo Done compiling OpenSSL
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]