Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-09 Thread Tim Whittington
I've managed to track down a VS6 install (so old the CD was a bit marginal) and am building now. It confused me for a moment until I realised you'd already patched the broken functions :) One thing I noticed is that VS6 can't read the .dsp and .dsw files currently in SVN, so I'm currently only

Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-09 Thread Mladen Turk
On 03/09/2010 08:58 PM, Tim Whittington wrote: I've managed to track down a VS6 install (so old the CD was a bit marginal) and am building now. You will need Platform SDK as well. Windows 2003R2 SDK is the one that has needed compilers for amd64 and ia64 and depend only on MSVCRT. When

Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-09 Thread Tim Whittington
When building x86 binaries, make sure PSDK dirs are included before MSVC6. Why does this make a difference? One thing I noticed is that VS6 can't read the .dsp and .dsw files currently in SVN, so I'm currently only doing cmdline builds. Check line endings. They must be CRLF

Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-09 Thread Mladen Turk
On 03/10/2010 02:04 AM, Tim Whittington wrote: When building x86 binaries, make sure PSDK dirs are included before MSVC6. Why does this make a difference? IIS should probably compile fine, however: http://httpd.apache.org/docs/2.2/platform/win_compiling.html requires the Platform SDK.

Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-08 Thread Mladen Turk
On 03/08/2010 08:57 AM, Tim Whittington wrote: Thanks I'm trying to track down a VC6 install so I can test the .dsp build before I commit. Maybe a move to VC2003 as a minimum might be in order some day. We just need MSVCRT, and the functions you've added are Microsoft vision of POSIX

svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-07 Thread timw
Author: timw Date: Sun Mar 7 20:31:45 2010 New Revision: 920093 URL: http://svn.apache.org/viewvc?rev=920093view=rev Log: Adding basic log rotation functionality to the ISAPI redirector - #48501 Config and functionality is modeled after the Apache HTTPD rotatelogs program for consistency.

Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-07 Thread Mladen Turk
On 03/07/2010 09:31 PM, t...@apache.org wrote: Author: timw +/* Remember the current log file name for the next potential rotate */ +strcpy_s(log_file_effective, sizeof(log_file_effective), log_file_name); -1 You will have to use StringCb routines here, because

Re: svn commit: r920093 - in /tomcat/jk/trunk: native/iis/jk_isapi_plugin.c xdocs/reference/iis.xml

2010-03-07 Thread Tim Whittington
Thanks I'm trying to track down a VC6 install so I can test the .dsp build before I commit. Maybe a move to VC2003 as a minimum might be in order some day. cheers tim On Mon, Mar 8, 2010 at 7:43 PM, Mladen Turk mt...@apache.org wrote: On 03/07/2010 09:31 PM, t...@apache.org wrote: Author: