You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/04/18 13:32:23 UTC

svn commit: r766303 - /commons/sandbox/runtime/trunk/src/main/native/configure

Author: mturk
Date: Sat Apr 18 11:32:22 2009
New Revision: 766303

URL: http://svn.apache.org/viewvc?rev=766303&view=rev
Log:
Add NDEBUG to windows compiler defines

Modified:
    commons/sandbox/runtime/trunk/src/main/native/configure

Modified: commons/sandbox/runtime/trunk/src/main/native/configure
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/configure?rev=766303&r1=766302&r2=766303&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/configure (original)
+++ commons/sandbox/runtime/trunk/src/main/native/configure Sat Apr 18 11:32:22 2009
@@ -296,7 +296,7 @@
         ;;
     windows-cl )
         varadds ccflags "-nologo -O2 -Ob2 -Oy- -Zi -D_MD -MD -W3"
-        varadds cppopts "-DWIN32 -D_WIN32 -D_WINDOWS -D_WINNT"
+        varadds cppopts "-DWIN32 -D_WIN32 -D_WINDOWS -D_WINNT -DNDEBUG"
         varadds cppopts "-D_WIN32_WINNT=0x0501 -D_WIN32_IE=0x0600"
         varadds cxxopts "/TP"
         varadds ldflags "kernel32.lib advapi32.lib ws2_32.lib mswsock.lib"