summaryrefslogtreecommitdiff
path: root/devel/libdaemon
diff options
context:
space:
mode:
authorhe <he@pkgsrc.org>2010-02-19 15:04:51 +0000
committerhe <he@pkgsrc.org>2010-02-19 15:04:51 +0000
commit3dfa74c187c03baba5fda0d203cccfbeb8ba5e22 (patch)
treeb83fc293d404664e694251d38354d863725cdee0 /devel/libdaemon
parent46983d634b051e968efbbbaa9bae9d120ca840c1 (diff)
downloadpkgsrc-3dfa74c187c03baba5fda0d203cccfbeb8ba5e22.tar.gz
Update from version 0.14 to 0.14nb1.
Pkgsrc changes: o On NetBSD 4.*, avoid the use of -Wl,--no-undefined. It doesn't work there, because the shared lib is not linked with libc.so (which is possibly a bug). Thanks to joerg@ for hints for how to work around this.
Diffstat (limited to 'devel/libdaemon')
-rw-r--r--devel/libdaemon/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/libdaemon/Makefile b/devel/libdaemon/Makefile
index a3e73460539..2bd9f202a79 100644
--- a/devel/libdaemon/Makefile
+++ b/devel/libdaemon/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2009/10/31 02:54:34 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2010/02/19 15:04:51 he Exp $
#
DISTNAME= libdaemon-0.14
+PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://0pointer.de/lennart/projects/libdaemon/
@@ -25,3 +26,7 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/doc/README ${DESTDIR}${PREFIX}/share/doc/libdaemon
.include "../../mk/bsd.pkg.mk"
+
+.if ${OPSYS} == "NetBSD" && ${OS_VERSION:M4.*} != ""
+BUILDLINK_TRANSFORM+= rm:-Wl,--no-undefined
+.endif