Bug 1682 - ./waf crashes on FC10
authorTommaso Pecorella <tommaso.pecorella@unifi.it>
Thu, 11 Jul 2013 11:56:10 +0200
changeset 9920 e90d966ba939
parent 9919 5596934962c2
child 9921 628d4b3d59d1
Bug 1682 - ./waf crashes on FC10
RELEASE_NOTES
waf-tools/boost.py
--- 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')