Which are you building? I believed I had already committed that one (tripped
over it myself.) It's possible this is sitting out in one of my many x686/Win64
trees, however.
+1 and I'll commit the patch shortly, if it wasn't already committed.
Bill
John Mark Vandenberg wrote:
Building testall reports the following warning.
1. cl : Command line warning D9035 : option 'GX' has been deprecated ...
cl : Command line warning D9036 : use 'EHsc' instead of 'GX'
Following those instructions doesnt affect the results.
Index: test/Makefile.win
===================================================================
--- test/Makefile.win.orig
+++ test/Makefile.win
@@ -25,7 +25,7 @@
CL = cl.exe
-CFLAGS = /nologo /c /MDd /W3 /Gm /GX /Zi /Od /D _DEBUG /D WIN32 /D APR_DECLARE_STATIC /FD
+CFLAGS = /nologo /c /MDd /W3 /Gm /EHsc /Zi /Od /D _DEBUG /D WIN32 /D APR_DECLARE_STATIC /FD
.c.obj::
$(CL) -c $< $(CFLAGS) $(INCLUDES)
--
.