You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/06/20 20:11:54 UTC

svn commit: r191527 - in /httpd/httpd/branches/1.3.x/src: ApacheCore.dsp ApacheCore.mak os/win32/mod_auth_anon.mak os/win32/mod_status.mak os/win32/mod_unique_id.mak os/win32/mod_usertrack.mak

Author: wrowe
Date: Mon Jun 20 11:11:53 2005
New Revision: 191527

URL: http://svn.apache.org/viewcvs?rev=191527&view=rev
Log:

  Survey says; /Oy- stack frame construction to help untangle crashes
  is goodness, /Gs0 stack checking override is a bad idea.  Adopt the
  accepted idea only.  [These few were omitted from commit 191525]

Reviewed by: stoddard, brane

Modified:
    httpd/httpd/branches/1.3.x/src/ApacheCore.dsp
    httpd/httpd/branches/1.3.x/src/ApacheCore.mak
    httpd/httpd/branches/1.3.x/src/os/win32/mod_auth_anon.mak
    httpd/httpd/branches/1.3.x/src/os/win32/mod_status.mak
    httpd/httpd/branches/1.3.x/src/os/win32/mod_unique_id.mak
    httpd/httpd/branches/1.3.x/src/os/win32/mod_usertrack.mak

Modified: httpd/httpd/branches/1.3.x/src/ApacheCore.dsp
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/ApacheCore.dsp?rev=191527&r1=191526&r2=191527&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/ApacheCore.dsp (original)
+++ httpd/httpd/branches/1.3.x/src/ApacheCore.dsp Mon Jun 20 11:11:53 2005
@@ -57,7 +57,7 @@
 # Begin Special Build Tool
 SOURCE="$(InputPath)"
 PreLink_Desc=Compiling buildmark
-PreLink_Cmds=cl.exe /nologo /MD /W3 /O2 /Zi /I "./include" /I ".\os\win32" /I ".\os\win32\win9xconhook" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /Fd"Release\ApacheCore_src" /FD /c .\buildmark.c /Fo"Release\buildmark.obj"
+PreLink_Cmds=cl.exe /nologo /MD /W3 /O2 /Oy- /Zi /I "./include" /I ".\os\win32" /I ".\os\win32\win9xconhook" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /Fd"Release\ApacheCore_src" /FD /c .\buildmark.c /Fo"Release\buildmark.obj"
 # End Special Build Tool
 
 !ELSEIF  "$(CFG)" == "ApacheCore - Win32 Debug"

Modified: httpd/httpd/branches/1.3.x/src/ApacheCore.mak
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/ApacheCore.mak?rev=191527&r1=191526&r2=191527&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/ApacheCore.mak (original)
+++ httpd/httpd/branches/1.3.x/src/ApacheCore.mak Mon Jun 20 11:11:53 2005
@@ -191,7 +191,7 @@
 	".\os\win32\Release\Win9xConHook.lib"
 
 "$(OUTDIR)\ApacheCore.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-   cl.exe /nologo /MD /W3 /O2 /Zi /I "./include" /I ".\os\win32" /I ".\os\win32\win9xconhook" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /Fd"Release\ApacheCore_src" /FD /c .\buildmark.c /Fo"Release\buildmark.obj"
+   cl.exe /nologo /MD /W3 /O2 /Oy- /Zi /I "./include" /I ".\os\win32" /I ".\os\win32\win9xconhook" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /Fd"Release\ApacheCore_src" /FD /c .\buildmark.c /Fo"Release\buildmark.obj"
 	 $(LINK32) @<<
   $(LINK32_FLAGS) $(LINK32_OBJS)
 <<

Modified: httpd/httpd/branches/1.3.x/src/os/win32/mod_auth_anon.mak
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/os/win32/mod_auth_anon.mak?rev=191527&r1=191526&r2=191527&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/os/win32/mod_auth_anon.mak (original)
+++ httpd/httpd/branches/1.3.x/src/os/win32/mod_auth_anon.mak Mon Jun 20 11:11:53 2005
@@ -60,7 +60,7 @@
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 
 CPP=cl.exe
-CPP_PROJ=/nologo /MD /W3 /Zi /O2 /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_auth_anon_src" /FD /c 
+CPP_PROJ=/nologo /MD /W3 /Zi /O2 /Oy- /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_auth_anon_src" /FD /c 
 
 .c{$(INTDIR)}.obj::
    $(CPP) @<<

Modified: httpd/httpd/branches/1.3.x/src/os/win32/mod_status.mak
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/os/win32/mod_status.mak?rev=191527&r1=191526&r2=191527&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/os/win32/mod_status.mak (original)
+++ httpd/httpd/branches/1.3.x/src/os/win32/mod_status.mak Mon Jun 20 11:11:53 2005
@@ -60,7 +60,7 @@
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 
 CPP=cl.exe
-CPP_PROJ=/nologo /MD /W3 /Zi /O2 /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_status_src" /FD /c 
+CPP_PROJ=/nologo /MD /W3 /Zi /O2 /Oy- /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_status_src" /FD /c 
 
 .c{$(INTDIR)}.obj::
    $(CPP) @<<

Modified: httpd/httpd/branches/1.3.x/src/os/win32/mod_unique_id.mak
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/os/win32/mod_unique_id.mak?rev=191527&r1=191526&r2=191527&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/os/win32/mod_unique_id.mak (original)
+++ httpd/httpd/branches/1.3.x/src/os/win32/mod_unique_id.mak Mon Jun 20 11:11:53 2005
@@ -60,7 +60,7 @@
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 
 CPP=cl.exe
-CPP_PROJ=/nologo /MD /W3 /Zi /O2 /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_unique_id_src" /FD /c 
+CPP_PROJ=/nologo /MD /W3 /Zi /O2 /Oy- /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_unique_id_src" /FD /c 
 
 .c{$(INTDIR)}.obj::
    $(CPP) @<<

Modified: httpd/httpd/branches/1.3.x/src/os/win32/mod_usertrack.mak
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/os/win32/mod_usertrack.mak?rev=191527&r1=191526&r2=191527&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/os/win32/mod_usertrack.mak (original)
+++ httpd/httpd/branches/1.3.x/src/os/win32/mod_usertrack.mak Mon Jun 20 11:11:53 2005
@@ -60,7 +60,7 @@
     if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
 
 CPP=cl.exe
-CPP_PROJ=/nologo /MD /W3 /Zi /O2 /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_usertrack_src" /FD /c 
+CPP_PROJ=/nologo /MD /W3 /Zi /O2 /Oy- /I "..\..\include" /I "..\..\os\win32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "SHARED_MODULE" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\mod_usertrack_src" /FD /c 
 
 .c{$(INTDIR)}.obj::
    $(CPP) @<<