diff options
author | osa <osa@FreeBSD.org> | 2010-01-19 04:02:27 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2010-01-19 04:02:27 +0800 |
commit | d74540702d2c0cfa650bacc51a300dff3acf32f3 (patch) | |
tree | eb97bf626c77586d52c2c1bdf7a63a0f8b14366f /dns/autotrust | |
parent | 9b1d1547ef72e2169eff7e5cd6b25c528cf542eb (diff) | |
download | freebsd-ports-gnome-d74540702d2c0cfa650bacc51a300dff3acf32f3.tar.gz freebsd-ports-gnome-d74540702d2c0cfa650bacc51a300dff3acf32f3.tar.zst freebsd-ports-gnome-d74540702d2c0cfa650bacc51a300dff3acf32f3.zip |
Fix build on 6.4-STABLE by add pthread's compiler/linker flags.
Bump PORTREVISION.
Reported by: pointyhat via erwin@
Approved by: maintainer aka jaap at NLnetLabs dot nl
Diffstat (limited to 'dns/autotrust')
-rw-r--r-- | dns/autotrust/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dns/autotrust/Makefile b/dns/autotrust/Makefile index 72345db645e1..4b047b3a1d67 100644 --- a/dns/autotrust/Makefile +++ b/dns/autotrust/Makefile @@ -7,7 +7,7 @@ PORTNAME= autotrust PORTVERSION= 0.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns MASTER_SITES= http://www.nlnetlabs.nl/downloads/autotrust/ @@ -18,6 +18,9 @@ LIB_DEPENDS+= ldns.1:${PORTSDIR}/dns/ldns \ unbound.2:${PORTSDIR}/dns/unbound GNU_CONFIGURE= yes +CONFIGURE_ENV= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +CFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} MAN8= autotrust.8 |