From: Robin Dunn Date: Thu, 12 Feb 2004 01:13:20 +0000 (+0000) Subject: HYBRID wxPython builds also need the __NO_VC_CRTDBG__ define since X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a3a2c5fec014937bc1c88019eeb30bea59cb1234 HYBRID wxPython builds also need the __NO_VC_CRTDBG__ define since 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 --- diff --git a/wxPython/setup.py b/wxPython/setup.py index 0c7b25df04..a2ac921ccf 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -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) )