You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2004/03/22 19:51:29 UTC

cvs commit: apache-1.3/src/os/win32 mod_rewrite.dsp

stoddard    2004/03/22 10:51:29

  Modified:    src/os/win32 mod_rewrite.dsp
  Log:
  pick up lib containing ntohs to fix build break
  
  Revision  Changes    Path
  1.22      +5 -5      apache-1.3/src/os/win32/mod_rewrite.dsp
  
  Index: mod_rewrite.dsp
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/os/win32/mod_rewrite.dsp,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- mod_rewrite.dsp	23 May 2003 02:47:50 -0000	1.21
  +++ mod_rewrite.dsp	22 Mar 2004 18:51:29 -0000	1.22
  @@ -42,8 +42,8 @@
   # PROP Intermediate_Dir "Release"
   # PROP Ignore_Export_Lib 0
   # PROP Target_Dir ""
  -# ADD BASE CPP /nologo /MD /W3 /O2 /Zi /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /FD /c
  -# ADD CPP /nologo /MD /W3 /O2 /Zi /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "NO_DBM_REWRITEMAP" /D "SHARED_MODULE" /D "WIN32_LEAN_AND_MEAN" /Fd"Release\mod_rewrite_src" /FD /c
  +# ADD BASE CPP /nologo /MD /W3 /Zi /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /FD /c
  +# ADD CPP /nologo /MD /W3 /Zi /O2 /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "NO_DBM_REWRITEMAP" /D "SHARED_MODULE" /D "WIN32_LEAN_AND_MEAN" /Fd"Release\mod_rewrite_src" /FD /c
   # ADD BASE MTL /nologo /D "NDEBUG" /win32
   # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
   # ADD BASE RSC /l 0x809 /d "NDEBUG"
  @@ -52,8 +52,8 @@
   # ADD BASE BSC32 /nologo
   # ADD BSC32 /nologo
   LINK32=link.exe
  -# ADD BASE 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 /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /out:"Release/mod_rewrite.so" /base:@"BaseAddr.ref",mod_rewrite /opt:ref
  +# ADD BASE LINK32 kernel32.lib /nologo /subsystem:windows /dll /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
   
   !ELSEIF  "$(CFG)" == "mod_rewrite - Win32 Debug"
   
  @@ -79,7 +79,7 @@
   # ADD BSC32 /nologo
   LINK32=link.exe
   # ADD BASE LINK32 kernel32.lib /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /out:"Debug/mod_rewrite.so" /base:@"BaseAddr.ref",mod_rewrite
  -# ADD LINK32 kernel32.lib /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /out:"Debug/mod_rewrite.so" /base:@"BaseAddr.ref",mod_rewrite
  +# ADD LINK32 kernel32.lib ws2_32.lib /nologo /subsystem:windows /dll /incremental:no /debug /machine:I386 /out:"Debug/mod_rewrite.so" /base:@"BaseAddr.ref",mod_rewrite
   
   !ENDIF 
   
  
  
  

Re: cvs commit: apache-1.3/src/os/win32 mod_rewrite.dsp

Posted by "William A. Rowe, Jr." <wr...@rowe-clan.net>.
>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