Hello, I have been following instructions on http://httpd.apache.org/docs-2.0 and noticed some things that do not work.
Issue 1 is on http://httpd.apache.org/docs-2.0/platform/win_compiling.html Here people are told to build openssl like this: 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 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.dbg On a case insenstive filesystem that windows boasts the 3rd command fails because it overwrites Makefile that it tries to open. The fix is to use a different file. E.g. 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.nt 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 -f makefile.nt nmake -f makefile.dbg Issue 2 is on http://httpd.apache.org/docs-2.0/mod/mod_proxy.html ProxyIOBufferSize Directive is described as: The ProxyIOBufferSize directive adjusts the size of the internal buffer, which is used as a scratchpad for the data between input and output. The size must be less or equal 8192. I believe the last sentence shoul read: The size must be greater or equal 8192. At least this is what my reading of mod_proxy sources. Thanks Greg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
