Summary: | www/chromium build with lang/gcc fails | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Lena <Lena> |
Component: | Individual Port(s) | Assignee: | freebsd-chromium (Nobody) <chromium> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Lena
2014-05-03 12:50:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->freebsd-chromium Over to maintainer (via the GNATS Auto Assign Tool) > 8.4-RELEASE-p4 i386 The same build error "call of overloaded 'abs(int64)' is ambiguous" also under 9.2 i386 and 9.1 i386: http://lists.freebsd.org/pipermail/freebsd-chromium/2014-May/001265.html http://lists.freebsd.org/pipermail/freebsd-chromium/2014-May/001266.html Author: rene Date: Fri May 9 11:49:43 2014 New Revision: 353447 URL: http://svnweb.freebsd.org/changeset/ports/353447 QAT: https://qat.redports.org/buildarchive/r353447/ Log: Fix build on i386 with GCC PR: ports/189286 Submitted by: Lena <lena@lena.kiev.ua> Added: head/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc (contents, props changed) head/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc (contents, props changed) Added: head/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc Fri May 9 11:49:43 2014 (r353447) @@ -0,0 +1,11 @@ +--- net/quic/congestion_control/inter_arrival_overuse_detector.cc.orig 2014-04-24 22:35:53.000000000 +0200 ++++ net/quic/congestion_control/inter_arrival_overuse_detector.cc 2014-05-09 10:29:30.000000000 +0200 +@@ -165,7 +165,7 @@ + if ((sigma_delta * kDetectTimeDiffStandardDeviation > + estimated_congestion_delay_.ToMicroseconds()) && + (sigma_delta * kDetectDriftStandardDeviation > +- std::abs(accumulated_deltas_.ToMicroseconds()))) { ++ std::labs(accumulated_deltas_.ToMicroseconds()))) { + if (delta_estimate_ != kBandwidthSteady) { + DVLOG(1) << "Bandwidth estimate drift: Steady" + << " mean:" << delta_mean_ Added: head/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc Fri May 9 11:49:43 2014 (r353447) @@ -0,0 +1,11 @@ +--- net/quic/congestion_control/tcp_cubic_sender.cc.orig 2014-04-24 22:35:53.000000000 +0200 ++++ net/quic/congestion_control/tcp_cubic_sender.cc 2014-05-09 10:57:21.000000000 +0200 +@@ -341,7 +341,7 @@ + mean_deviation_ = QuicTime::Delta::FromMicroseconds( + kOneMinusBeta * mean_deviation_.ToMicroseconds() + + kBeta * +- std::abs(smoothed_rtt_.ToMicroseconds() - rtt.ToMicroseconds())); ++ std::labs(smoothed_rtt_.ToMicroseconds() - rtt.ToMicroseconds())); + smoothed_rtt_ = QuicTime::Delta::FromMicroseconds( + kOneMinusAlpha * smoothed_rtt_.ToMicroseconds() + + kAlpha * rtt.ToMicroseconds()); _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed a fix, thanks Author: rene Date: Wed May 14 15:29:32 2014 New Revision: 354067 URL: http://svnweb.freebsd.org/changeset/ports/354067 QAT: https://qat.redports.org/buildarchive/r354067/ Log: MFH: r353447 Fix build on i386 with GCC PR: ports/189286 Submitted by: Lena <lena@lena.kiev.ua> Approved by: portmgr (erwin) Added: branches/2014Q2/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc - copied unchanged from r353447, head/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc branches/2014Q2/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc - copied unchanged from r353447, head/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc Modified: Directory Properties: branches/2014Q2/ (props changed) Copied: branches/2014Q2/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc (from r353447, head/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q2/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc Wed May 14 15:29:32 2014 (r354067, copy of r353447, head/www/chromium/files/patch-net__quic__congestion_control__inter_arrival_overuse_detector.cc) @@ -0,0 +1,11 @@ +--- net/quic/congestion_control/inter_arrival_overuse_detector.cc.orig 2014-04-24 22:35:53.000000000 +0200 ++++ net/quic/congestion_control/inter_arrival_overuse_detector.cc 2014-05-09 10:29:30.000000000 +0200 +@@ -165,7 +165,7 @@ + if ((sigma_delta * kDetectTimeDiffStandardDeviation > + estimated_congestion_delay_.ToMicroseconds()) && + (sigma_delta * kDetectDriftStandardDeviation > +- std::abs(accumulated_deltas_.ToMicroseconds()))) { ++ std::labs(accumulated_deltas_.ToMicroseconds()))) { + if (delta_estimate_ != kBandwidthSteady) { + DVLOG(1) << "Bandwidth estimate drift: Steady" + << " mean:" << delta_mean_ Copied: branches/2014Q2/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc (from r353447, head/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q2/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc Wed May 14 15:29:32 2014 (r354067, copy of r353447, head/www/chromium/files/patch-net__quic__congestion_control__tcp_cubic_sender.cc) @@ -0,0 +1,11 @@ +--- net/quic/congestion_control/tcp_cubic_sender.cc.orig 2014-04-24 22:35:53.000000000 +0200 ++++ net/quic/congestion_control/tcp_cubic_sender.cc 2014-05-09 10:57:21.000000000 +0200 +@@ -341,7 +341,7 @@ + mean_deviation_ = QuicTime::Delta::FromMicroseconds( + kOneMinusBeta * mean_deviation_.ToMicroseconds() + + kBeta * +- std::abs(smoothed_rtt_.ToMicroseconds() - rtt.ToMicroseconds())); ++ std::labs(smoothed_rtt_.ToMicroseconds() - rtt.ToMicroseconds())); + smoothed_rtt_ = QuicTime::Delta::FromMicroseconds( + kOneMinusAlpha * smoothed_rtt_.ToMicroseconds() + + kAlpha * rtt.ToMicroseconds()); _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" |