summaryrefslogtreecommitdiffstats
path: root/lib/bind
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2004-09-23 07:52:51 +0000
committerdes <des@FreeBSD.org>2004-09-23 07:52:51 +0000
commit2f716615f330176c4e0908de815ce6965d0c8eb6 (patch)
treecb5287af481e2da8f8f95f8bd894582caa8cbbc1 /lib/bind
parent5ffe6cac978e92e1ed89013a279e3ddb48bd8b1e (diff)
downloadFreeBSD-src-2f716615f330176c4e0908de815ce6965d0c8eb6.zip
FreeBSD-src-2f716615f330176c4e0908de815ce6965d0c8eb6.tar.gz
Instead of hardcoding the BIND version, deduce it from ${BIND_DIR}/version.
Diffstat (limited to 'lib/bind')
-rw-r--r--lib/bind/config.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/bind/config.mk b/lib/bind/config.mk
index 1ca8a27..23ba65e 100644
--- a/lib/bind/config.mk
+++ b/lib/bind/config.mk
@@ -1,7 +1,11 @@
# $FreeBSD$
# BIND version number
-CFLAGS+= -DVERSION='"9.3.0"'
+.if defined(BIND_DIR) && exists(${BIND_DIR}/version)
+.include "${BIND_DIR}/version"
+BIND_VERSION= ${MAJORVER}.${MINORVER}.${PATCHVER}${RELEASETYPE}${RELEASEVER}
+CFLAGS+= -DVERSION='"${BIND_VERSION}"'
+.endif
CFLAGS+= -DHAVE_CONFIG_H
OpenPOWER on IntegriCloud