summaryrefslogtreecommitdiff
path: root/x11/imwheel
diff options
context:
space:
mode:
authorzuntum <zuntum>2004-01-11 20:46:49 +0000
committerzuntum <zuntum>2004-01-11 20:46:49 +0000
commitb35d2ca8188fa969544a3dbf010ee226ff9f64ae (patch)
treec24b80bc1594625f657872b1912c0100a3e15f96 /x11/imwheel
parentf244447045947f4940da9d255bfe92239dd36673 (diff)
downloadpkgsrc-b35d2ca8188fa969544a3dbf010ee226ff9f64ae.tar.gz
Fix multiline string literals so it compiles with gcc3.
Diffstat (limited to 'x11/imwheel')
-rw-r--r--x11/imwheel/distinfo3
-rw-r--r--x11/imwheel/patches/patch-ac23
2 files changed, 25 insertions, 1 deletions
diff --git a/x11/imwheel/distinfo b/x11/imwheel/distinfo
index 0699c202edd..2ef24b057d3 100644
--- a/x11/imwheel/distinfo
+++ b/x11/imwheel/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.1.1.1 2001/04/27 13:32:01 zuntum Exp $
+$NetBSD: distinfo,v 1.2 2004/01/11 20:46:49 zuntum Exp $
SHA1 (imwheel-0.9.9.tar.gz) = cbf5d40f764d4b7382538954b68bb9a6c4faa336
Size (imwheel-0.9.9.tar.gz) = 411882 bytes
SHA1 (patch-aa) = f869d434415e526b24451205383009be76829f28
SHA1 (patch-ab) = 2547c10c55626568e9447f2a5f2258e83d26e506
+SHA1 (patch-ac) = ce2d5ef56c685a68ae735b1d5a354b7b163e5ee5
diff --git a/x11/imwheel/patches/patch-ac b/x11/imwheel/patches/patch-ac
new file mode 100644
index 00000000000..ba7d5c3f0bf
--- /dev/null
+++ b/x11/imwheel/patches/patch-ac
@@ -0,0 +1,23 @@
+$NetBSD: patch-ac,v 1.1 2004/01/11 20:46:49 zuntum Exp $
+
+--- util.c.orig 2000-10-31 13:06:05.000000000 +0100
++++ util.c
+@@ -330,12 +330,12 @@ void WritePID()
+ fclose(f);
+ if(pid>0 && useFifo)
+ {
+- fprintf(stderr,"\
+-ERROR: imwheel is already running or there is a stale pid file
+- check on processes listed below.
+- run with -k to kill running imwheels.
+- remove pid file %s.
+- or run with -p to avoid the pid file altogether.\n",PIDFILE);
++ fprintf(stderr,
++"ERROR: imwheel is already running or there is a stale pid file\n"
++" check on processes listed below.\n"
++" run with -k to kill running imwheels.\n"
++" remove pid file %s.\n"
++" or run with -p to avoid the pid file altogether.\n",PIDFILE);
+ if((f=fopen(PIDFILE,"r")))
+ {
+ while(fscanf(f,"%d",&pid)>0)