diff options
author | Guenter Knauf <fuankg@apache.org> | 2007-12-31 18:38:06 +0100 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2007-12-31 18:38:06 +0100 |
commit | d955a6d7357c2731eba2befe1b188627b0afe2d2 (patch) | |
tree | 64b7388a2b343d3e6178fc323af45a0080844df2 | |
parent | fixed comment, added comment, added logic to build mod_ssl by default if USE_... (diff) | |
download | apache2-d955a6d7357c2731eba2befe1b188627b0afe2d2.tar.xz apache2-d955a6d7357c2731eba2befe1b188627b0afe2d2.zip |
updated NetWare OpenSSL build section.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@607759 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/platform/netware.xml | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/docs/manual/platform/netware.xml b/docs/manual/platform/netware.xml index f5f2698bf7..898fcc48fe 100644 --- a/docs/manual/platform/netware.xml +++ b/docs/manual/platform/netware.xml @@ -615,17 +615,10 @@ steps:</p> <ul> - <li>Download the latest NetWare patch for OpenSSL from the - <a href="http://www.openssl.org/contrib/">OpenSSL Contribution</a> - page.</li> - - <li>Download the corresponding OpenSSL source code from the + <li>Download the recent OpenSSL 0.9.8 release source code from the <a href="http://www.openssl.org/source/">OpenSSL Source</a> - page.</li> - - <li>At the root of the OpenSSL source directory, apply the NetWare - patch using the "patch" utility, for example: - <example>patch -p 1 -i netwarepatch-0.9.7g.diff</example></li> + page (older 0.9.7 versions need to be patched and are therefore not + recommended).</li> <li>Edit the file <code>NetWare/set_env.bat</code> and modify any tools and utilities paths so that they correspond to your build @@ -634,14 +627,25 @@ <li>From the root of the OpenSSL source directory, run the following scripts: <example> - Netware/set_env netware-libc<br /> - Netware/build netware-libc - </example></li> + Netware\set_env netware-libc<br /> + Netware\build netware-libc + </example> + For performance reasons you should enable to build with ASM code. + Download NASM from the <a href="http://nasm.sourceforge.net/">SF site</a>. + Then configure OpenSSL to use ASM code: + <example> + Netware\build netware-libc nw-nasm enable-mdc2 enable-md5 + </example> + Warning: dont use the CodeWarrior Assembler - it produces broken code! + </li> <li>Before building Apache, set the environment variable <code>OSSLSDK</code> to the full path to the root of the openssl - source code directory. - <example>Set OSSLSDK=d:\openssl-0.9.7x</example></li> + source code directory, and set WITH_MOD_SSL to 1. + <example> + Set OSSLSDK=d:\openssl-0.9.8x<br /> + Set WITH_MOD_SSL=1 + </example></li> </ul> |