diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2006-07-06 18:12:10 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2006-07-06 18:12:10 +0000 |
commit | 9f76234bb6b695e3ead0be8e3a172d4e2b9bae09 (patch) | |
tree | 5926cd44385ffb88fb4a288b66eed5e95bfaa4fb /docs | |
parent | dd4bd1bff942c2f68c67b52886e79fb7fbd6a749 (diff) | |
download | httpd-9f76234bb6b695e3ead0be8e3a172d4e2b9bae09.tar.gz |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/platform/win_compiling.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/manual/platform/win_compiling.xml b/docs/manual/platform/win_compiling.xml index 8b069606f9..eaaec967c5 100644 --- a/docs/manual/platform/win_compiling.xml +++ b/docs/manual/platform/win_compiling.xml @@ -136,20 +136,24 @@ >http://www.openssl.org/source/</a>, in order to compile <module>mod_ssl</module> or the abs project (<code>ab.exe</code> with SSL support.) To prepare OpenSSL for both <code>release</code> and <code>debug</code> 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:</p> <example> perl Configure VC-WIN32<br /> perl util\mkfiles.pl >MINFO<br /> - perl util\mk1mf.pl dll no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile<br /> + perl util\mk1mf.pl dll no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile.rel<br /> perl util\mk1mf.pl dll debug no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile.dbg<br /> perl util\mkdef.pl 32 libeay no-asm no-mdc2 no-rc5 no-idea >ms\libeay32.def<br /> perl util\mkdef.pl 32 ssleay no-asm no-mdc2 no-rc5 no-idea >ms\ssleay32.def<br /> - nmake<br /> + nmake -f makefile.rel<br /> nmake -f makefile.dbg </example> + <p>Note; you can use the scripts in the <code>ms\</code> subdirectory, however, + it's rather tricky to force <code>ms\do_masm.bat</code>, 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.</p> </li> <li> |