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
This commit is contained in:
Robin Dunn
2004-02-12 01:13:20 +00:00
parent 7330bb53dc
commit a3a2c5fec0

View File

@@ -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) )