summaryrefslogtreecommitdiff
path: root/INSTALL.W32
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-07 22:55:27 +0000
committerUlf Möller <ulf@openssl.org>1999-05-07 22:55:27 +0000
commit7d5d27b9a3edf37e6752a961b0da969b6813fa75 (patch)
tree5f7a6007d694e8e45360b722118f1897484b76dd /INSTALL.W32
parent12d7d32f24a3fb1ea804cfeebdbbcb91308150bd (diff)
downloadopenssl-new-7d5d27b9a3edf37e6752a961b0da969b6813fa75.tar.gz
Generate DLLs with Mingw32.
Diffstat (limited to 'INSTALL.W32')
-rw-r--r--INSTALL.W3244
1 files changed, 14 insertions, 30 deletions
diff --git a/INSTALL.W32 b/INSTALL.W32
index 80ea905049..3da0cb4477 100644
--- a/INSTALL.W32
+++ b/INSTALL.W32
@@ -72,44 +72,31 @@
To build OpenSSL, you need the Mingw32 package and GNU make.
- Compiler installation:
+ * Compiler installation:
- Mingw32 is available from <ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/
- mingw32/egcs-1.1.2/egcs-1.1.2-mingw32.zip>. GNU make is at
- <ftp://agnes.dida.physik.uni-essen.de/home/janjaap/mingw32/binaries/
- make-3.76.1.zip>. Install both of them in C:\egcs-1.1.2 and run
- C:\egcs-1.1.2\mingw32.bat to set the PATH.
+ Mingw32 is available from <ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/
+ mingw32/egcs-1.1.2/egcs-1.1.2-mingw32.zip>. GNU make is at
+ <ftp://agnes.dida.physik.uni-essen.de/home/janjaap/mingw32/binaries/
+ make-3.76.1.zip>. Install both of them in C:\egcs-1.1.2 and run
+ C:\egcs-1.1.2\mingw32.bat to set the PATH.
- * Configure OpenSSL:
+ * Compile OpenSSL:
- > perl Configure Mingw32
- > perl util\mkfiles.pl >MINFO
- > perl util\mk1mf.pl Mingw32 >ms\mingw32.mak
+ Run ms\mw.bat
- * This step can be skipped if you have the GNU file utitilities (cp, rm, ...)
- installed:
+ This will create the library and binaries in out.
- > perl util\mk1mf.pl Mingw32-files >ms\mingw32f.mak
- > make -f ms/mingw32f.mak
+ libcrypto.a and libssl.a are the static libraries. To use the DLLs,
+ link with libeay32.a and libssl32.a instead.
- This will end with an error message. If you don't like that, install
- the file utilities. :)
+ See troubleshooting if you get error messages about functions not having
+ a number assigned.
- * Compile the library:
- > make -f ms/mingw32.mak
-
- You can now try the tests:
+ * You can now try the tests:
> cd out
> ..\ms\test
- * Build the OpenSSL DLLs:
-
- > perl util\mkdef.pl 32 libeay > ms\libeay32.def
- > perl util\mkdef.pl 32 ssleay > ms\ssleay32.def
-
- [to be done]
-
Troubleshooting
---------------
@@ -151,9 +138,6 @@
program will almost certainly crash: see the original SSLeay description
below for more details.
- Tweaks
- ------
-
--------------------------------------------------------------------------------
The orignal Windows build instructions from SSLeay follow.
Note: some of this may be out of date and no longer applicable