Bug 1392 - Modules built report does not clarify C++ or Python
authorMitch Watrous <watrous@u.washington.edu>
Tue, 24 Apr 2012 12:00:10 -0700
changeset 7863 5a610391f3f1
parent 7862 49020d5c8a10
child 7864 d0df2d56ae9c
Bug 1392 - Modules built report does not clarify C++ or Python
RELEASE_NOTES
wscript
--- a/RELEASE_NOTES	Tue Apr 24 17:29:28 2012 +0100
+++ b/RELEASE_NOTES	Tue Apr 24 12:00:10 2012 -0700
@@ -36,12 +36,15 @@
    
 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
--- a/wscript	Tue Apr 24 17:29:28 2012 +0100
+++ b/wscript	Tue Apr 24 12:00:10 2012 -0700
@@ -846,7 +846,12 @@
         # 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