mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-24 11:29:10 +00:00
Add support for the build options that are currently in the port:
WITH_BIND_IDN WITH_BIND_LARGE_FILE WITH_BIND_SIGCHASE WITH_BIND_XML
This commit is contained in:
parent
25dd52cdb1
commit
536613bc35
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193280
@ -70,6 +70,19 @@ ISC_ATOMIC_ARCH= x86_32
|
|||||||
ISC_ATOMIC_ARCH= ${MACHINE_ARCH}
|
ISC_ATOMIC_ARCH= ${MACHINE_ARCH}
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
# Optional features
|
||||||
|
.if ${MK_BIND_LARGE_FILE} == "yes"
|
||||||
|
CFLAGS+= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
|
||||||
|
.endif
|
||||||
|
.if ${MK_BIND_SIGCHASE} == "yes"
|
||||||
|
CFLAGS+= -DDIG_SIGCHASE
|
||||||
|
.endif
|
||||||
|
.if ${MK_BIND_XML} == "yes"
|
||||||
|
CFLAGS+= -DHAVE_LIBXML2
|
||||||
|
CFLAGS+= -I/usr/local/include -I/usr/local/include/libxml2
|
||||||
|
CFLAGS+= -L/usr/local/lib -lxml2 -lz -liconv -lm
|
||||||
|
.endif
|
||||||
|
|
||||||
# Link against BIND libraries
|
# Link against BIND libraries
|
||||||
.if ${MK_BIND_LIBS} == "no"
|
.if ${MK_BIND_LIBS} == "no"
|
||||||
LIBBIND9= ${LIB_BIND_REL}/bind9/libbind9.a
|
LIBBIND9= ${LIB_BIND_REL}/bind9/libbind9.a
|
||||||
|
@ -402,7 +402,11 @@ MK_${var}:= yes
|
|||||||
# MK_* options which default to "no".
|
# MK_* options which default to "no".
|
||||||
#
|
#
|
||||||
.for var in \
|
.for var in \
|
||||||
|
BIND_IDN \
|
||||||
|
BIND_LARGE_FILE \
|
||||||
BIND_LIBS \
|
BIND_LIBS \
|
||||||
|
BIND_SIGCHASE \
|
||||||
|
BIND_XML \
|
||||||
GNU_CPIO \
|
GNU_CPIO \
|
||||||
HESIOD \
|
HESIOD \
|
||||||
IDEA
|
IDEA
|
||||||
|
3
tools/build/options/WITH_BIND_IDN
Normal file
3
tools/build/options/WITH_BIND_IDN
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.\" $FreeBSD$
|
||||||
|
Set to enable IDN support for dig, host, and nslookup.
|
||||||
|
This requires ports/dns/idnkit to be installed in /usr/local.
|
2
tools/build/options/WITH_BIND_LARGE_FILE
Normal file
2
tools/build/options/WITH_BIND_LARGE_FILE
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.\" $FreeBSD$
|
||||||
|
Set to enable 64-bit file support.
|
2
tools/build/options/WITH_BIND_SIGCHASE
Normal file
2
tools/build/options/WITH_BIND_SIGCHASE
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.\" $FreeBSD$
|
||||||
|
Set to enable DNSSEC validation support for dig, host, and nslookup.
|
3
tools/build/options/WITH_BIND_XML
Normal file
3
tools/build/options/WITH_BIND_XML
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.\" $FreeBSD$
|
||||||
|
Set to enable the http statistics interface for named.
|
||||||
|
This requires ports/textproc/libxml2 to be installed in /usr/local.
|
@ -15,6 +15,11 @@ SRCS+= dig.c dighost.c
|
|||||||
CFLAGS+= -I${SRCDIR}/include
|
CFLAGS+= -I${SRCDIR}/include
|
||||||
CFLAGS+= -I${BIND_DIR}/lib/isc/${ISC_ATOMIC_ARCH}/include
|
CFLAGS+= -I${BIND_DIR}/lib/isc/${ISC_ATOMIC_ARCH}/include
|
||||||
|
|
||||||
|
.if ${MK_BIND_IDN} == "yes"
|
||||||
|
CFLAGS+= -DWITH_IDN -I/usr/local/include
|
||||||
|
CFLAGS+= -L/usr/local/lib -lidnkit -R/usr/local/lib -liconv
|
||||||
|
.endif
|
||||||
|
|
||||||
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD}
|
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD}
|
||||||
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD}
|
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD}
|
||||||
|
|
||||||
|
@ -9,7 +9,25 @@ SRCDIR= ${BIND_DIR}/bin/named
|
|||||||
|
|
||||||
PROG= named
|
PROG= named
|
||||||
|
|
||||||
CONFIGARGS='--prefix=/usr' '--without-libxml2' '--without-idn' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--enable-threads' '--disable-ipv6' '--enable-getifaddrs' '--disable-linux-caps' '--with-openssl=/usr' '--with-randomdev=/dev/random'
|
CONFIGARGS='--prefix=/usr' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--enable-threads' '--disable-ipv6' '--enable-getifaddrs' '--disable-linux-caps' '--with-openssl=/usr' '--with-randomdev=/dev/random'
|
||||||
|
|
||||||
|
# Optional features
|
||||||
|
.if ${MK_BIND_LARGE_FILE} == "yes"
|
||||||
|
CONFIGARGS+='--enable-largefile'
|
||||||
|
.endif
|
||||||
|
.if ${MK_BIND_SIGCHASE} == "yes"
|
||||||
|
CONFIGARGS+='STD_CDEFINES=-DDIG_SIGCHASE=1'
|
||||||
|
.endif
|
||||||
|
.if ${MK_BIND_IDN} == "yes"
|
||||||
|
CONFIGARGS+='--with-idn=/usr/local'
|
||||||
|
.else
|
||||||
|
CONFIGARGS+='--without-idn'
|
||||||
|
.endif
|
||||||
|
.if ${MK_BIND_XML} == "yes"
|
||||||
|
CONFIGARGS+='--with-libxml2=/usr/local'
|
||||||
|
.else
|
||||||
|
CONFIGARGS+='--without-libxml2'
|
||||||
|
.endif
|
||||||
|
|
||||||
.PATH: ${SRCDIR}/unix
|
.PATH: ${SRCDIR}/unix
|
||||||
SRCS+= os.c
|
SRCS+= os.c
|
||||||
|
Loading…
Reference in New Issue
Block a user