From 550efc3e5942635faa77a0feddffbe09f0e54c50 Mon Sep 17 00:00:00 2001 From: Mitch Watrous Date: Tue, 24 Apr 2012 12:00:10 -0700 Subject: [PATCH] Bug 1392 - Modules built report does not clarify C++ or Python --- RELEASE_NOTES | 3 +++ wscript | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 4303f890b..be00fe418 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -36,12 +36,15 @@ New user-visible features Bugs fixed ---------- + - bug 1313 - Stddev (average.h) returning NaN - bug 1319 - Fix Ipv6RawSocketImpl Icmpv6 filter - bug 1318 - Asserts for IPv6 malformed packets + - bug 1339 - test.py uses the old name for the test runner - bug 1357 - IPv6 fragmentation fails due to checks about malformed extensions - bug 1378 - UdpEchoClient::SetFill () does not set packet size correctly - bug 1351 and 1333 - TCP not able to take RTT samples on long delay network - bug 1362 - ICMPv6 does not forward ICMPs to upper layers (and minor fixes to ICMPv6) + - bug 1392 - Modules built report does not clarify C++ or Python - bug 1395 - AODV DeferredRouteOutputTag missing constructor Known issues diff --git a/wscript b/wscript index 05440fa36..09a33a215 100644 --- a/wscript +++ b/wscript @@ -846,7 +846,12 @@ def shutdown(ctx): # Print the list of built modules. print print 'Modules built:' - names_without_prefix =[name[len('ns3-'):] for name in env['NS3_ENABLED_MODULES']] + names_without_prefix = [] + for name in env['NS3_ENABLED_MODULES']: + name1 = name[len('ns3-'):] + if name not in env.MODULAR_BINDINGS_MODULES: + name1 += " (no Python)" + names_without_prefix.append(name1) print_module_names(names_without_prefix) print