summaryrefslogtreecommitdiff
path: root/editors/dasher/patches
diff options
context:
space:
mode:
authordrochner <drochner>2008-05-29 17:53:36 +0000
committerdrochner <drochner>2008-05-29 17:53:36 +0000
commitf34a7f97e4dd6a68ce74032f90b6d90789667952 (patch)
tree25259ece7f9d6ec1549b571586c7630650e3e5c7 /editors/dasher/patches
parent494d1113fdacb3ed4f90cf69624cf18d49d795b0 (diff)
downloadpkgsrc-f34a7f97e4dd6a68ce74032f90b6d90789667952.tar.gz
update to 4.7.3
This switches to the gnome-2.22 release tree.
Diffstat (limited to 'editors/dasher/patches')
-rw-r--r--editors/dasher/patches/patch-aa12
-rw-r--r--editors/dasher/patches/patch-ag15
2 files changed, 3 insertions, 24 deletions
diff --git a/editors/dasher/patches/patch-aa b/editors/dasher/patches/patch-aa
deleted file mode 100644
index 49d7d535b6e..00000000000
--- a/editors/dasher/patches/patch-aa
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-aa,v 1.7 2007/04/17 20:31:35 joerg Exp $
-
---- Src/Gtk2/dasher_main.cpp.orig 2007-04-17 19:50:29.000000000 +0000
-+++ Src/Gtk2/dasher_main.cpp
-@@ -1,5 +1,7 @@
- #include "config.h"
-
-+#include <unistd.h>
-+
- #include <gdk/gdk.h>
- #include <gdk/gdkx.h>
- #include <glade/glade.h>
diff --git a/editors/dasher/patches/patch-ag b/editors/dasher/patches/patch-ag
index 011290b93af..011747d9c62 100644
--- a/editors/dasher/patches/patch-ag
+++ b/editors/dasher/patches/patch-ag
@@ -1,8 +1,8 @@
-$NetBSD: patch-ag,v 1.2 2007/12/27 14:55:36 joerg Exp $
+$NetBSD: patch-ag,v 1.3 2008/05/29 17:53:36 drochner Exp $
---- Src/DasherCore/DasherViewSquare.cpp.orig 2007-10-30 17:46:41.000000000 +0100
+--- Src/DasherCore/DasherViewSquare.cpp.orig 2008-04-07 19:25:34.000000000 +0200
+++ Src/DasherCore/DasherViewSquare.cpp
-@@ -791,7 +791,7 @@ void CDasherViewSquare::GetScaleFactor(
+@@ -805,7 +805,7 @@ void CDasherViewSquare::GetScaleFactor(
inline myint CDasherViewSquare::CustomIDiv(myint iNumerator, myint iDenominator) {
// Integer division rounding away from zero
@@ -11,12 +11,3 @@ $NetBSD: patch-ag,v 1.2 2007/12/27 14:55:36 joerg Exp $
myint quot = iNumerator / iDenominator;
myint rem = (int64)iNumerator % (int64)iDenominator;
-@@ -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;