diff -r b6804efbe16b -r 1f5d9b97a1a2 bindings/python/ns3modulegen.py --- a/bindings/python/ns3modulegen.py Tue Sep 02 11:12:42 2008 +0100 +++ b/bindings/python/ns3modulegen.py Tue Sep 02 17:32:19 2008 +0100 @@ -115,6 +115,10 @@ if 'DISABLE_GTK_CONFIG_STORE' in os.environ: root_module.classes.remove(root_module['ns3::GtkConfigStore']) + # if no sqlite, the class SqliteDataOutput is disabled + if 'SQLITE_STATS' in os.environ: + root_module.classes.remove(root_module['ns3::SqliteDataOutput']) + root_module.generate(out, '_ns3') out.close()