aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjase <jase@FreeBSD.org>2012-07-18 07:49:20 +0800
committerjase <jase@FreeBSD.org>2012-07-18 07:49:20 +0800
commit983264f857b1a150ac981a24a173b42cc057a0bc (patch)
treee38f12c2b3cf5f416d2ce5d4e9e4e52a198e5fbf
parent6152d759d8f2a1c3a03451c19817a8d746ae35e9 (diff)
downloadfreebsd-ports-gnome-983264f857b1a150ac981a24a173b42cc057a0bc.tar.gz
freebsd-ports-gnome-983264f857b1a150ac981a24a173b42cc057a0bc.tar.zst
freebsd-ports-gnome-983264f857b1a150ac981a24a173b42cc057a0bc.zip
- Fix LARGEFILE option typo that resulted in largefile support being
constantly disabled. PR: ports/169952 Spotted by: Jaap Akkerhuis <jaap@NLnetLabs.nl> (maintainer) Approved by: flo (mentor)
-rw-r--r--dns/nsd/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/nsd/Makefile b/dns/nsd/Makefile
index 33f316aebf6c..b923c0e19995 100644
--- a/dns/nsd/Makefile
+++ b/dns/nsd/Makefile
@@ -7,6 +7,7 @@
PORTNAME= nsd
PORTVERSION= 3.2.11
+PORTREVISION= 1
CATEGORIES= dns ipv6
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \
ftp://ftp.rhnet.is/pub/nsd/
@@ -70,7 +71,7 @@ MAXIPS_DESC= Raise max-ips from 8 to ${NSDMAX_IPS}
CONFIGURE_ARGS+= --enable-root-server
.endif
-.if empty(PORT_OPTIONS:MLARGFILE)
+.if empty(PORT_OPTIONS:MLARGEFILE)
CONFIGURE_ARGS+= --disable-largefile
.endif