From: William A. Rowe Jr Date: Thu, 6 Jul 2006 18:12:10 +0000 (+0000) Subject: Fix the openssl half of the instructions, since they were broken. X-Git-Tag: 2.0.59~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f76234bb6b695e3ead0be8e3a172d4e2b9bae09;p=thirdparty%2Fapache%2Fhttpd.git Fix the openssl half of the instructions, since they were broken. Backports part of 419635 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@419640 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/platform/win_compiling.xml b/docs/manual/platform/win_compiling.xml index 8b069606f9e..eaaec967c58 100644 --- a/docs/manual/platform/win_compiling.xml +++ b/docs/manual/platform/win_compiling.xml @@ -136,20 +136,24 @@ >http://www.openssl.org/source/, in order to compile mod_ssl or the abs project (ab.exe with SSL support.) To prepare OpenSSL for both release and debug builds of Apache, and - disable the patent protected features in 0.9.7, you might use the following + disable the patent protected features in OpenSSL, you might use the following build commands:

perl Configure VC-WIN32
perl util\mkfiles.pl >MINFO
- perl util\mk1mf.pl dll no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile
+ perl util\mk1mf.pl dll no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile.rel
perl util\mk1mf.pl dll debug no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile.dbg
perl util\mkdef.pl 32 libeay no-asm no-mdc2 no-rc5 no-idea >ms\libeay32.def
perl util\mkdef.pl 32 ssleay no-asm no-mdc2 no-rc5 no-idea >ms\ssleay32.def
- nmake
+ nmake -f makefile.rel
nmake -f makefile.dbg
+

Note; you can use the scripts in the ms\ subdirectory, however, + it's rather tricky to force ms\do_masm.bat, for example, to perform + the patent encumberances as mentioned above. Patches to add the $* argument list + to the appropriate .bat lines in these scripts aren't incorporated, thus far.