>stoddard 2004/03/22 10:51:29 > --- mod_rewrite.dsp 23 May 2003 02:47:50 -0000 1.21 > +++ mod_rewrite.dsp 22 Mar 2004 18:51:29 -0000 1.22 > -# ADD LINK32 kernel32.lib /nologo /subsystem:windows /dll /incremental:no /debug > /machine:I386 /out:"Release/mod_rewrite.so" /base:@"BaseAddr.ref",mod_rewrite > /opt:ref > +# ADD LINK32 kernel32.lib ws2_32.lib /nologo /subsystem:windows /dll /debug > /machine:I386 /out:"Release/mod_rewrite.so" /base:@"BaseAddr.ref",mod_rewrite > /opt:ref
as mentioned last week, /incremental:no MUST be explicitly stated in the .dsp for the release build - because /debug will turn it on (and it's not wanted.) BUT the IDE will insist on stripping it, because it believes the flag is redundant - thanks again to tools too smart for out own good :( Please fix. Bill