head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.2 pkgsrc-2013Q2-base:1.3; locks; strict; comment @# @; 1.3 date 2013.05.23.12.55.27; author ryoon; state dead; branches; next 1.2; commitid hOYA93csj3ibSKQw; 1.2 date 2013.05.19.08.47.41; author ryoon; state Exp; branches; next 1.1; commitid i72N8U6dwY2uDdQw; 1.1 date 2013.05.11.23.33.14; author mef; state Exp; branches; next ; commitid NHOMjS9PlnetMgPw; desc @@ 1.3 log @Remove xulrunner. This does not work, and there is no consumer. @ text @$NetBSD: patch-xpcom_io_nsMultiplexInputStream_cpp,v 1.2 2013/05/19 08:47:41 ryoon Exp $ Fix PR/47722, dragonfly (gcc 4.7) build problem: error: no matching function for call to 'NS_MIN(int64_t&, __gnu_cxx::__enable_if::__type)' devel/xulrunner/work/mozilla-release/xpcom/io/nsMultiplexInputStream.cpp:532:83 --- xpcom/io/nsMultiplexInputStream.cpp.orig 2013-05-11 19:19:56.000000000 +0000 +++ xpcom/io/nsMultiplexInputStream.cpp @@@@ -529,7 +529,7 @@@@ nsMultiplexInputStream::Seek(int32_t aWh rv = stream->Tell(&avail); NS_ENSURE_SUCCESS(rv, rv); - int64_t newPos = streamPos + XPCOM_MIN(avail, std::abs(remaining)); + int64_t newPos = streamPos + XPCOM_MIN(avail, (int64_t)std::abs(remaining)); rv = stream->Seek(NS_SEEK_END, -newPos); NS_ENSURE_SUCCESS(rv, rv); @ 1.2 log @Update to 21.0 and mark as BROKEN. * Introduce WEBRTC patches for FreeBSD, this patches are not work for NetBSD. * When firefox/xulrunner-22.0 is released, I will check the functionality of xulrunner package again. * Patches and dist.mk are used by www/firefox. * Take MAINATINERship. @ text @d1 1 a1 1 $NetBSD: patch-xpcom_io_nsMultiplexInputStream_cpp,v 1.1 2013/05/11 23:33:14 mef Exp $ @ 1.1 log @Fix following DragonFly build problem as PR pkg/47722 /usr/pkgsrc/devel/xulrunner/work/mozilla-release/ xpcom/io/nsMultiplexInputStream.cpp:532:83: error: no matching function for call to 'NS_MIN(int64_t&,__gnu_cxx::__enable_if::__type)' @ text @d1 1 a1 1 $NetBSD$ d8 2 a9 2 --- xpcom/io/nsMultiplexInputStream.cpp.orig 2013-04-10 12:03:01.000000000 +0900 +++ xpcom/io/nsMultiplexInputStream.cpp 2013-04-16 08:01:29.000000000 +0900 d14 2 a15 2 - int64_t newPos = streamPos + NS_MIN(avail, std::abs(remaining)); + int64_t newPos = streamPos + NS_MIN(avail, (int64_t)std::abs(remaining)); a18 1 @