diff options
author | Doug Barton <dougb@FreeBSD.org> | 2010-09-22 18:46:17 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2010-09-22 18:46:17 +0000 |
commit | 6d7fe909385d1b4c2b9e3e3e5de384576d49a508 (patch) | |
tree | 3833b8aaa895df867c0b4ce7896bf4b6417faacf /usr.sbin/named | |
parent | c56cf19ebf5294c9539d752c719768f176ad731f (diff) |
Eliminate the --disable-ipv6 string which while technically correct in
terms of the arguments that configure was called with is misleading because
if IPv6 support is present on the system it will be present in BIND.
Notes
Notes:
svn path=/head/; revision=213005
Diffstat (limited to 'usr.sbin/named')
-rw-r--r-- | usr.sbin/named/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/named/Makefile b/usr.sbin/named/Makefile index 296afe916399..adeb3da0f624 100644 --- a/usr.sbin/named/Makefile +++ b/usr.sbin/named/Makefile @@ -9,7 +9,7 @@ SRCDIR= ${BIND_DIR}/bin/named PROG= named -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' +CONFIGARGS='--prefix=/usr' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--enable-threads' '--enable-getifaddrs' '--disable-linux-caps' '--with-openssl=/usr' '--with-randomdev=/dev/random' # Optional features .if ${MK_BIND_LARGE_FILE} == "yes" |