--- a/RELEASE_NOTES Wed Jul 10 00:06:35 2013 +0200
+++ b/RELEASE_NOTES Thu Jul 11 11:56:10 2013 +0200
@@ -33,6 +33,7 @@
- Bug 1646 - ICMPv6 Redirect are sent from global address instead of link-local
- Bug 1662 - m_type not set for Ipv6OptionRouterAlertHeader
- Bug 1678 - C++11 compliance problem with std::pair"
+- Bug 1682 - ./waf crashes on FC10
- Bug 1683 - IPv6 autoconfigured don't use *infinite* lifetimes
- Bug 1669 - ns-3 should support binding two and three (possibly more) arguments
- Bug 1675 - Throughput computation error in Wireless examples
--- a/waf-tools/boost.py Wed Jul 10 00:06:35 2013 +0200
+++ b/waf-tools/boost.py Thu Jul 11 11:56:10 2013 +0200
@@ -356,7 +356,7 @@
self.end_msg("ok: winning cxxflags combination: %s" % (self.env["CXXFLAGS_%s" % var]))
e = None
break
- except Errors.ConfigurationError as exc:
+ except Errors.ConfigurationError, exc:
self.env.revert()
e = exc
@@ -368,7 +368,7 @@
self.start_msg('Checking for boost linkage')
try:
try_link()
- except Errors.ConfigurationError as e:
+ except Errors.ConfigurationError, e:
self.fatal("Could not link against boost libraries using supplied options")
self.end_msg('ok')