Bug 1392 - Modules built report does not clarify C++ or Python
parent
17c1bad598
commit
550efc3e59
|
@ -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
|
||||
|
|
7
wscript
7
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue