]> git.saurik.com Git - wxWidgets.git/commitdiff
HYBRID wxPython builds also need the __NO_VC_CRTDBG__ define since
authorRobin Dunn <robin@alldunn.com>
Thu, 12 Feb 2004 01:13:20 +0000 (01:13 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 12 Feb 2004 01:13:20 +0000 (01:13 +0000)
there are wx headers that use it now.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/setup.py

index 0c7b25df04b92aa72243a703101b6901e05b4627..a2ac921ccf1605efdac0be230293b7bec49e39e4 100755 (executable)
@@ -469,6 +469,8 @@ if os.name == 'nt':
     if UNDEF_NDEBUG:
         defines.append( ('NDEBUG',) )  # using a 1-tuple makes it do an undef
 
+    if HYBRID:
+        defines.append( ('__NO_VC_CRTDBG__', None) )
 
     if not FINAL or HYBRID:
         defines.append( ('__WXDEBUG__', None) )