diff options
author | jlam <jlam@pkgsrc.org> | 2004-12-04 23:09:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-12-04 23:09:06 +0000 |
commit | efbb0aede92c6a70e15ff0d08788c077504f1e0e (patch) | |
tree | 2ef88e75d07f9faafc01905d7ba4958af6ffdd61 /net/maradns | |
parent | fe6dc064b01c926b6660df8b1325e837afbf43f6 (diff) | |
download | pkgsrc-efbb0aede92c6a70e15ff0d08788c077504f1e0e.tar.gz |
Set PTHREAD_AUTO_VARS to "yes" after pthread.buildlink3.mk was changed
not to automatically add pthread-related CFLAGS, LDFLAGS, and LIBS to
the configure and build processes.
Diffstat (limited to 'net/maradns')
-rw-r--r-- | net/maradns/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/maradns/Makefile b/net/maradns/Makefile index 630cd198fab..041f3f59ad2 100644 --- a/net/maradns/Makefile +++ b/net/maradns/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2004/12/04 11:58:06 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2004/12/04 23:09:07 jlam Exp $ DISTNAME= maradns-1.0.18 PKGREVISION= 1 @@ -15,13 +15,14 @@ USE_PKGINSTALL= yes RCD_SCRIPTS= maradns HAS_CONFIGURE= yes PTHREAD_OPTS+= require +PTHREAD_AUTO_VARS= yes MAKE_ENV+= LANGUAGE="en" EGDIR= ${PREFIX}/share/examples/maradns CONF_FILES= ${EGDIR}/example_mararc ${PKG_SYSCONFDIR}/mararc .include "../../mk/pthread.buildlink3.mk" -LDFLAGS+= ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} +LDFLAGS+= ${PTHREAD_LIBS} post-patch: ${SED} -e s,@@PKGSYSCONFDIR@@,${PKG_SYSCONFDIR}, \ |