diff options
author | jnemeth <jnemeth@pkgsrc.org> | 2007-06-29 17:50:20 +0000 |
---|---|---|
committer | jnemeth <jnemeth@pkgsrc.org> | 2007-06-29 17:50:20 +0000 |
commit | d47f22e022aa16eb271bd51be0257d7e6776aaa2 (patch) | |
tree | 3b2e34dd2d2aa1bcb2386aa279a20799fd0aa255 | |
parent | 1812dfe1559f68e9595577eaec24f38b684b657c (diff) | |
download | pkgsrc-d47f22e022aa16eb271bd51be0257d7e6776aaa2.tar.gz |
If we're going to use signal() and SIG_* then #include <signal.h>
oked by jmmv@
-rw-r--r-- | x11/fast-user-switch-applet/Makefile | 4 | ||||
-rw-r--r-- | x11/fast-user-switch-applet/distinfo | 3 | ||||
-rw-r--r-- | x11/fast-user-switch-applet/patches/patch-aa | 12 |
3 files changed, 16 insertions, 3 deletions
diff --git a/x11/fast-user-switch-applet/Makefile b/x11/fast-user-switch-applet/Makefile index 56bb457a020..c6f801eb207 100644 --- a/x11/fast-user-switch-applet/Makefile +++ b/x11/fast-user-switch-applet/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.11 2007/06/05 05:37:39 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2007/06/29 17:50:20 jnemeth Exp $ # DISTNAME= fast-user-switch-applet-2.18.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= misc gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/fast-user-switch-applet/2.18/} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/fast-user-switch-applet/distinfo b/x11/fast-user-switch-applet/distinfo index ef60caf4c28..3c3c8b0841b 100644 --- a/x11/fast-user-switch-applet/distinfo +++ b/x11/fast-user-switch-applet/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.5 2007/04/13 05:29:07 wiz Exp $ +$NetBSD: distinfo,v 1.6 2007/06/29 17:50:20 jnemeth Exp $ SHA1 (fast-user-switch-applet-2.18.0.tar.bz2) = 8bea178630ab5dc2ab4d542f76f4286dfd225b1b RMD160 (fast-user-switch-applet-2.18.0.tar.bz2) = c8e377e6db4d698ceb2314fb826a980b556d38f6 Size (fast-user-switch-applet-2.18.0.tar.bz2) = 761628 bytes +SHA1 (patch-aa) = b15502d11ce651fe2e055e8a3e1f717b517138fe diff --git a/x11/fast-user-switch-applet/patches/patch-aa b/x11/fast-user-switch-applet/patches/patch-aa new file mode 100644 index 00000000000..835e9b59329 --- /dev/null +++ b/x11/fast-user-switch-applet/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.4 2007/06/29 17:50:21 jnemeth Exp $ + +--- src/gdm-queue.c.orig 2007-04-09 09:01:03.000000000 -0700 ++++ src/gdm-queue.c +@@ -33,6 +33,7 @@ + #include <sys/un.h> + #include <errno.h> + #include <stdio.h> ++#include <signal.h> + + #include "gdm-queue.h" + |