# HG changeset patch # User fmoatamr # Date 1260266820 -3600 # Node ID 569f16c35f46838a2ba522fd9d12170c6593395a # Parent eb5b9d2951921e844675461f0a1dfe7ffdb51b25 Fixing building with python bindings under MingW diff -r eb5b9d295192 -r 569f16c35f46 bindings/python/ns3modulegen.py --- a/bindings/python/ns3modulegen.py Mon Dec 07 19:16:52 2009 +0100 +++ b/bindings/python/ns3modulegen.py Tue Dec 08 11:07:00 2009 +0100 @@ -131,10 +131,9 @@ pass if 'Threading' not in enabled_features: - for clsname in ['SystemThread', 'SystemMutex', 'SystemCondition', 'CriticalSection']: + for clsname in ['SystemThread', 'SystemMutex', 'SystemCondition', 'CriticalSection', 'SimpleRefCount< ns3::SystemThread, ns3::empty >']: root_module.classes.remove(root_module['ns3::%s' % clsname]) - if 'EmuNetDevice' not in enabled_features: for clsname in ['EmuNetDevice', 'EmuHelper']: root_module.classes.remove(root_module['ns3::%s' % clsname])