25630ba729
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.
32 lines
684 B
Makefile
32 lines
684 B
Makefile
# $FreeBSD$
|
|
|
|
BIND_DIR= ${.CURDIR}/../../contrib/bind9
|
|
LIB_BIND_REL= ../../lib/bind
|
|
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
|
|
SRCDIR= ${BIND_DIR}/bin/confgen
|
|
|
|
.include "${LIB_BIND_DIR}/config.mk"
|
|
|
|
PROG= ddns-confgen
|
|
|
|
.PATH: ${SRCDIR}/unix
|
|
SRCS+= os.c
|
|
|
|
.PATH: ${SRCDIR}
|
|
SRCS+= ddns-confgen.c keygen.c util.c
|
|
|
|
CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include -I${LIB_BIND_DIR}
|
|
|
|
WARNS?= 3
|
|
|
|
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD}
|
|
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD}
|
|
|
|
MAN= ddns-confgen.8
|
|
|
|
MANFILTER= sed -e 's@fI/etc\\fR.*@fI/etc/namedb\\fR@' \
|
|
-e '/^sysconfdir$$/d' \
|
|
-e '/was specified as when BIND was built)/d'
|
|
|
|
.include <bsd.prog.mk>
|