Module Name: src
Committed By: christos
Date: Sat Aug 20 11:23:33 UTC 2016
Modified Files:
src/share/mk: bsd.README bsd.own.mk bsd.prog.mk
Log Message:
unbound additions
To generate a diff of this commit:
cvs rdiff -u -r1.354 -r1.355 src/share/mk/bsd.README
cvs rdiff -u -r1.944 -r1.945 src/share/mk/bsd.own.mk
cvs rdiff -u -r1.299 -r1.300 src/share/mk/bsd.prog.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/bsd.README
diff -u src/share/mk/bsd.README:1.354 src/share/mk/bsd.README:1.355
--- src/share/mk/bsd.README:1.354 Tue Jun 14 09:26:45 2016
+++ src/share/mk/bsd.README Sat Aug 20 07:23:33 2016
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.README,v 1.354 2016/06/14 13:26:45 christos Exp $
+# $NetBSD: bsd.README,v 1.355 2016/08/20 11:23:33 christos Exp $
# @(#)bsd.README 8.2 (Berkeley) 4/2/94
This is the README file for the make "include" files for the NetBSD
@@ -369,6 +369,10 @@ MKPOSTFIX If "no", don't build or instal
MKPROFILE If "no", don't build or install the profiling (*_p.a) libraries.
Default: yes
+MKRADEONFIRMWARE If "no", install the /libdata/firmware/radeon directory,
+ which is necessary for the radeon DRM driver.
+ Default: yes on i386 and amd64, no elsewhere.
+
MKRELRO If "partial", set the non-PLT GOT to read-only. If "full"
also force immediate symbol binding.
Default: no
@@ -408,6 +412,8 @@ MKTPM If "no" then don't build the Trus
infrastructure.
Default: no
+MKUNBOUND If not "no", build and install the "unbound" DNS resolver.
+
MKUNPRIVED If not "no", don't set the owner/group/mode when installing
files or directories, and keep a metadata log of what
the owner/group/mode should be. This allows a
@@ -433,10 +439,6 @@ MKX11MOTIF: If "yes", build the native X
location can be specified using the X11MOTIFPATH variable.
Default: no
-MKRADEONFIRMWARE If "no", install the /libdata/firmware/radeon directory,
- which is necessary for the radeon DRM driver.
- Default: yes on i386 and amd64, no elsewhere.
-
MKYP If "no", disables building of YP (NIS)
infrastructure (libraries and support programs).
Default: yes
@@ -1640,6 +1642,7 @@ DPADD Additional dependencies for the p
LIBSUPCXX?= ${DESTDIR}/usr/lib/libsupc++.a
LIBTERMINFO?= ${DESTDIR}/usr/lib/libterminfo.a
LIBTRE?= ${DESTDIR}/usr/lib/libtre.a
+ LIBUNBOUND?= ${DESTDIR}/usr/lib/libunbound.a
LIBUSBHID?= ${DESTDIR}/usr/lib/libusbhid.a
LIBUTIL?= ${DESTDIR}/usr/lib/libutil.a
LIBWIND?= ${DESTDIR}/usr/lib/libwind.a
Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.944 src/share/mk/bsd.own.mk:1.945
--- src/share/mk/bsd.own.mk:1.944 Fri Aug 19 20:36:03 2016
+++ src/share/mk/bsd.own.mk Sat Aug 20 07:23:33 2016
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.944 2016/08/20 00:36:03 mrg Exp $
+# $NetBSD: bsd.own.mk,v 1.945 2016/08/20 11:23:33 christos Exp $
# This needs to be before bsd.init.mk
.if defined(BSD_MK_COMPAT_FILE)
@@ -1112,6 +1112,7 @@ _MKVARS.yes= \
MKPF MKPIC MKPICINSTALL MKPICLIB MKPOSTFIX MKPROFILE \
MKRUMP \
MKSHARE MKSKEY MKSTATICLIB \
+ MKUNBOUND \
MKX11FONTS \
MKYP
.for var in ${_MKVARS.yes}
Index: src/share/mk/bsd.prog.mk
diff -u src/share/mk/bsd.prog.mk:1.299 src/share/mk/bsd.prog.mk:1.300
--- src/share/mk/bsd.prog.mk:1.299 Mon Apr 4 11:06:16 2016
+++ src/share/mk/bsd.prog.mk Sat Aug 20 07:23:33 2016
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prog.mk,v 1.299 2016/04/04 15:06:16 joerg Exp $
+# $NetBSD: bsd.prog.mk,v 1.300 2016/08/20 11:23:33 christos Exp $
# @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94
.ifndef HOSTPROG
@@ -199,6 +199,7 @@ LIBCRTI= ${DESTDIR}/usr/lib/${MLIBDIR:D$
supcxx \
terminfo \
tre \
+ unbound \
usbhid \
util \
wind \