head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.10 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.8 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.6 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.4 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.2 pkgsrc-2009Q4-base:1.5 pkgsrc-2009Q1:1.4.0.2 pkgsrc-2009Q1-base:1.4 pkgsrc-2008Q4:1.3.0.10 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.8 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.6 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.4 pkgsrc-2008Q2-base:1.3 cwrapper:1.3.0.2 pkgsrc-2008Q1:1.2.0.4 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.2 pkgsrc-2007Q4-base:1.2; locks; strict; comment @# @; 1.5 date 2009.05.21.16.06.35; author wiz; state dead; branches; next 1.4; 1.4 date 2009.03.22.15.30.51; author wiz; state Exp; branches; next 1.3; 1.3 date 2008.05.29.17.53.36; author drochner; state Exp; branches; next 1.2; 1.2 date 2007.12.27.14.55.36; author joerg; state Exp; branches; next 1.1; 1.1 date 2007.11.05.20.01.00; author drochner; state Exp; branches; next ; desc @@ 1.5 log @Remove cargo cult patch. @ text @$NetBSD: patch-ag,v 1.4 2009/03/22 15:30:51 wiz Exp $ --- Src/DasherCore/DasherViewSquare.cpp.orig 2009-03-16 17:02:53.000000000 +0000 +++ Src/DasherCore/DasherViewSquare.cpp @@@@ -41,7 +41,7 @@@@ using namespace Dasher; // Track memory leaks on Windows to the line that new'd the memory -#ifdef _WIN32 +#if defined(_WIN32) || defined(__DragonFly__) #ifdef _DEBUG_MEMLEAKS #define DEBUG_NEW new( _NORMAL_BLOCK, THIS_FILE, __LINE__ ) #define new DEBUG_NEW @ 1.4 log @Update to 4.10.0, convert to user-destdir. ============ Dasher 4.10.0 ============ * Fix click modes where letters near the edge of the selection box to "leak" out so they could not be selected. * Fix UTF-8 bug so e.g., Japanese and Hebrew work. @ text @d1 1 a1 1 $NetBSD: patch-ag,v 1.3 2008/05/29 17:53:36 drochner Exp $ @ 1.3 log @update to 4.7.3 This switches to the gnome-2.22 release tree. @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- Src/DasherCore/DasherViewSquare.cpp.orig 2008-04-07 19:25:34.000000000 +0200 d5 4 a8 4 @@@@ -805,7 +805,7 @@@@ void CDasherViewSquare::GetScaleFactor( inline myint CDasherViewSquare::CustomIDiv(myint iNumerator, myint iDenominator) { // Integer division rounding away from zero d11 3 a13 3 myint quot = iNumerator / iDenominator; myint rem = (int64)iNumerator % (int64)iDenominator; @ 1.2 log @No lldiv on DragonFly, just compute it directly (most likely doesn't make a difference anyway). @ text @d1 1 a1 1 $NetBSD: patch-ag,v 1.1 2007/11/05 20:01:00 drochner Exp $ d3 1 a3 1 --- Src/DasherCore/DasherViewSquare.cpp.orig 2007-10-30 17:46:41.000000000 +0100 d5 1 a5 1 @@@@ -791,7 +791,7 @@@@ void CDasherViewSquare::GetScaleFactor( a13 9 @@@@ -802,7 +802,7 @@@@ inline myint CDasherViewSquare::CustomID else return quot; #else - lldiv_t res = __gnu_cxx::lldiv(iNumerator, iDenominator); + lldiv_t res = ::lldiv(iNumerator, iDenominator); if(res.rem < 0) return res.quot - 1; @ 1.1 log @update to 4.6.1 This switches to the new gnome-2.20 branch. @ text @d1 1 a1 1 $NetBSD$ d5 9 @