Bug 1682 - ./waf crashes on FC10
This commit is contained in:
@@ -33,6 +33,7 @@ Bugs fixed
|
||||
- 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
|
||||
|
||||
@@ -356,7 +356,7 @@ def check_boost(self, *k, **kw):
|
||||
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 @@ def check_boost(self, *k, **kw):
|
||||
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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user