summaryrefslogtreecommitdiff
path: root/graphics/geeqie
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2009-07-24 10:51:15 +0000
committerdrochner <drochner@pkgsrc.org>2009-07-24 10:51:15 +0000
commitadf60452041715ed38b2f7f16b41929a2b6e01a7 (patch)
treeda807cb0fcd18146d882481ad80f870505b234e0 /graphics/geeqie
parentb942993db7eaaebfbcb583216511250b06989c18 (diff)
downloadpkgsrc-adf60452041715ed38b2f7f16b41929a2b6e01a7.tar.gz
-remove unneeded patch
-disable the SIGBUS handler completely -- as implemented it can only cause trouble
Diffstat (limited to 'graphics/geeqie')
-rw-r--r--graphics/geeqie/distinfo5
-rw-r--r--graphics/geeqie/patches/patch-ab12
-rw-r--r--graphics/geeqie/patches/patch-ac23
3 files changed, 17 insertions, 23 deletions
diff --git a/graphics/geeqie/distinfo b/graphics/geeqie/distinfo
index d83dfe25030..7e517fe27c1 100644
--- a/graphics/geeqie/distinfo
+++ b/graphics/geeqie/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.2 2009/07/23 23:08:37 wiz Exp $
+$NetBSD: distinfo,v 1.3 2009/07/24 10:51:15 drochner Exp $
SHA1 (geeqie-1.0beta2.tar.gz) = 2f26de077d90cad5a0499bfd5e8e3908947773de
RMD160 (geeqie-1.0beta2.tar.gz) = 7cb29da6495eec48660102b105e0516375936737
Size (geeqie-1.0beta2.tar.gz) = 1912367 bytes
SHA1 (patch-aa) = 7991cc161efcc2ac0ac7d477019ed7e3092d9d1b
-SHA1 (patch-ab) = fd686d122a3e7766823a5670e22448c5c8ad54cc
-SHA1 (patch-ac) = eae6e5843473fd49aa07ca7d988deb24a16087f9
+SHA1 (patch-ac) = f4ceb73b0ce87e50c38b758575ab0a441c245b84
diff --git a/graphics/geeqie/patches/patch-ab b/graphics/geeqie/patches/patch-ab
deleted file mode 100644
index ec97614c18f..00000000000
--- a/graphics/geeqie/patches/patch-ab
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2009/07/23 23:08:37 wiz Exp $
-
---- po/Makefile.in.in.orig 2009-07-02 17:46:02.000000000 +0000
-+++ po/Makefile.in.in
-@@ -21,6 +21,7 @@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
- PACKAGE = @PACKAGE@
- VERSION = @VERSION@
-
-+top_builddir = ..
- SHELL = @SHELL@
-
- srcdir = @srcdir@
diff --git a/graphics/geeqie/patches/patch-ac b/graphics/geeqie/patches/patch-ac
index 0418e66c81c..467eef952f7 100644
--- a/graphics/geeqie/patches/patch-ac
+++ b/graphics/geeqie/patches/patch-ac
@@ -1,15 +1,22 @@
-$NetBSD: patch-ac,v 1.1 2009/07/23 23:08:37 wiz Exp $
+$NetBSD: patch-ac,v 1.2 2009/07/24 10:51:16 drochner Exp $
---- src/main.c.orig 2009-07-02 17:45:20.000000000 +0000
+--- src/main.c.orig 2009-07-02 19:45:20.000000000 +0200
+++ src/main.c
-@@ -698,6 +698,10 @@ void exit_program(void)
+@@ -698,7 +698,7 @@ void exit_program(void)
*/
/* FIXME: this probably needs some better ifdefs. Please report any compilation problems */
-+#ifndef MAP_ANONYMOUS
-+#define MAP_ANONYMOUS 0
-+#endif
-+
- #ifdef SIGBUS
+-#ifdef SIGBUS
++#if 0
static void sigbus_handler_cb(int signum, siginfo_t *info, void *context)
{
+ unsigned long pagesize = sysconf(_SC_PAGE_SIZE);
+@@ -709,7 +709,7 @@ static void sigbus_handler_cb(int signum
+
+ static void setup_sigbus_handler(void)
+ {
+-#ifdef SIGBUS
++#if 0
+ struct sigaction sigbus_action;
+ sigfillset(&sigbus_action.sa_mask);
+ sigbus_action.sa_sigaction = sigbus_handler_cb;