summaryrefslogtreecommitdiff
path: root/devel/libdaemon
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-10-31 02:54:34 +0000
committerwiz <wiz@pkgsrc.org>2009-10-31 02:54:34 +0000
commitb4abe15f63f1002a0ad2b335b521088a4f8773ba (patch)
tree6b497858bd0871dd7945e7dfde46937f93a211aa /devel/libdaemon
parent89d8fae186fde36e07ec7919fff97a50f52a3cf0 (diff)
downloadpkgsrc-b4abe15f63f1002a0ad2b335b521088a4f8773ba.tar.gz
Update to 0.14:
add daemon_set_verbosity() call; numerous updates
Diffstat (limited to 'devel/libdaemon')
-rw-r--r--devel/libdaemon/Makefile4
-rw-r--r--devel/libdaemon/PLIST4
-rw-r--r--devel/libdaemon/distinfo9
-rw-r--r--devel/libdaemon/patches/patch-aa30
4 files changed, 9 insertions, 38 deletions
diff --git a/devel/libdaemon/Makefile b/devel/libdaemon/Makefile
index 21eb27d1794..a3e73460539 100644
--- a/devel/libdaemon/Makefile
+++ b/devel/libdaemon/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2009/08/16 14:24:01 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2009/10/31 02:54:34 wiz Exp $
#
-DISTNAME= libdaemon-0.13
+DISTNAME= libdaemon-0.14
CATEGORIES= devel
MASTER_SITES= http://0pointer.de/lennart/projects/libdaemon/
diff --git a/devel/libdaemon/PLIST b/devel/libdaemon/PLIST
index 9557916cb9a..eb1162212a0 100644
--- a/devel/libdaemon/PLIST
+++ b/devel/libdaemon/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2009/06/14 17:48:51 joerg Exp $
+@comment $NetBSD: PLIST,v 1.3 2009/10/31 02:54:34 wiz Exp $
include/libdaemon/daemon.h
include/libdaemon/dexec.h
include/libdaemon/dfork.h
@@ -9,3 +9,5 @@ include/libdaemon/dsignal.h
lib/libdaemon.la
lib/pkgconfig/libdaemon.pc
share/doc/libdaemon/README
+share/doc/libdaemon/README.html
+share/doc/libdaemon/style.css
diff --git a/devel/libdaemon/distinfo b/devel/libdaemon/distinfo
index c16523d46fe..b5afa1df452 100644
--- a/devel/libdaemon/distinfo
+++ b/devel/libdaemon/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2009/08/18 05:40:44 hasso Exp $
+$NetBSD: distinfo,v 1.5 2009/10/31 02:54:34 wiz Exp $
-SHA1 (libdaemon-0.13.tar.gz) = 2c67eedf0dfe303a86bee64feba3e40d21abbd01
-RMD160 (libdaemon-0.13.tar.gz) = 7fc41dc7a147d969b29e5a359442716859de7e0e
-Size (libdaemon-0.13.tar.gz) = 368119 bytes
-SHA1 (patch-aa) = 946c837cabafbeb52cb4f615e9f9b2021b475180
+SHA1 (libdaemon-0.14.tar.gz) = 78a4db58cf3a7a8906c35592434e37680ca83b8f
+RMD160 (libdaemon-0.14.tar.gz) = 952ae993fecfe3ec765dfa43b2690a83f1a5c939
+Size (libdaemon-0.14.tar.gz) = 340474 bytes
diff --git a/devel/libdaemon/patches/patch-aa b/devel/libdaemon/patches/patch-aa
deleted file mode 100644
index 4cd5ca455a0..00000000000
--- a/devel/libdaemon/patches/patch-aa
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2009/08/18 05:40:44 hasso Exp $
-
-http://git.0pointer.de/?p=libdaemon.git;a=commitdiff;h=5b1daf07
-
---- libdaemon/dfork.c.orig 2008-07-28 22:37:56 +0300
-+++ libdaemon/dfork.c 2009-08-18 08:25:30 +0300
-@@ -42,6 +42,14 @@
- #include "dnonblock.h"
- #include "dlog.h"
-
-+#if defined(_NSIG) /* On glibc NSIG does not count RT signals */
-+# define SIGNAL_UPPER_BOUND _NSIG
-+#elif defined(NSIG) /* Solaris defines just this */
-+# define SIGNAL_UPPER_BOUND NSIG
-+#else
-+# error "Unknown upper bound for signals"
-+#endif
-+
- static int _daemon_retval_pipe[2] = { -1, -1 };
-
- static int _null_open(int f, int fd) {
-@@ -665,7 +673,7 @@ int daemon_reset_sigs(int except, ...) {
- int daemon_reset_sigsv(const int except[]) {
- int sig;
-
-- for (sig = 1; sig < _NSIG; sig++) {
-+ for (sig = 1; sig < SIGNAL_UPPER_BOUND; sig++) {
- int reset = 1;
-
- switch (sig) {