From 264979c9d1dc6f5cacff8dc9ec89d787dfa80612 Mon Sep 17 00:00:00 2001 From: dougb Date: Sat, 16 Jul 2011 11:20:54 +0000 Subject: bmake and other updates necessary for the BIND 9.8.x upgrade. This includes a structural change regarding atomic ops. Previously they were enabled on all platforms unless we had knowledge that they did not work. However both work performed by marius@ on sparc64 and the fact that the 9.8.x branch is fussier in this area has demonstrated that this is not a safe approach. So I've modified a patch provided by marius to enable them for i386, amd64, and ia64 only. --- usr.sbin/dnssec-revoke/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 usr.sbin/dnssec-revoke/Makefile (limited to 'usr.sbin/dnssec-revoke') diff --git a/usr.sbin/dnssec-revoke/Makefile b/usr.sbin/dnssec-revoke/Makefile new file mode 100644 index 0000000..7889d96 --- /dev/null +++ b/usr.sbin/dnssec-revoke/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +BIND_DIR= ${.CURDIR}/../../contrib/bind9 +LIB_BIND_REL= ../../lib/bind +LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL} +SRCDIR= ${BIND_DIR}/bin/dnssec + +.include "${LIB_BIND_DIR}/config.mk" + +PROG= dnssec-revoke + +.PATH: ${SRCDIR} +SRCS+= dnssec-revoke.c dnssectool.c + +CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include + +DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD} +LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD} + +WARNS?= 3 + +MAN= dnssec-revoke.8 + +.include -- cgit v1.1