svn commit: r311209 - in stable/11: tools/build/mk usr.sbin/bsnmpd/modules
Ngie Cooper
ngie at FreeBSD.org
Wed Jan 4 00:39:01 UTC 2017
Author: ngie
Date: Wed Jan 4 00:39:00 2017
New Revision: 311209
URL: https://svnweb.freebsd.org/changeset/base/311209
Log:
MFC r310664:
Only build/install usr.sbin/bsnmpd/modules/snmp_wlan if MK_WIRELESS != no
Modified:
stable/11/tools/build/mk/OptionalObsoleteFiles.inc
stable/11/usr.sbin/bsnmpd/modules/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- stable/11/tools/build/mk/OptionalObsoleteFiles.inc Wed Jan 4 00:38:21 2017 (r311208)
+++ stable/11/tools/build/mk/OptionalObsoleteFiles.inc Wed Jan 4 00:39:00 2017 (r311209)
@@ -9094,6 +9094,12 @@ OLD_FILES+=usr/share/man/man8/wlandebug.
OLD_FILES+=usr/share/man/man8/wpa_cli.8.gz
OLD_FILES+=usr/share/man/man8/wpa_passphrase.8.gz
OLD_FILES+=usr/share/man/man8/wpa_supplicant.8.gz
+OLD_FILES+=usr/lib/snmp_wlan.so
+OLD_LIBS+=usr/lib/snmp_wlan.so.6
+# bsnmp module
+OLD_FILES+=usr/share/man/man3/snmp_wlan.3.gz
+OLD_FILES+=usr/share/snmp/defs/wlan_tree.def
+OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-WIRELESS-MIB.txt
.endif
.if ${MK_SVNLITE} == no || ${MK_SVN} == yes
Modified: stable/11/usr.sbin/bsnmpd/modules/Makefile
==============================================================================
--- stable/11/usr.sbin/bsnmpd/modules/Makefile Wed Jan 4 00:38:21 2017 (r311208)
+++ stable/11/usr.sbin/bsnmpd/modules/Makefile Wed Jan 4 00:39:00 2017 (r311209)
@@ -17,7 +17,6 @@ SUBDIR= ${_snmp_atm} \
snmp_target \
snmp_usm \
snmp_vacm \
- snmp_wlan
.if ${MK_PF} != "no"
SUBDIR+=snmp_pf
@@ -27,6 +26,10 @@ SUBDIR+=snmp_pf
SUBDIR+=snmp_netgraph
.endif
+.if ${MK_WIRELESS} != "no"
+SUBDIR+=snmp_wlan
+.endif
+
INCS= snmpmod.h
INCSDIR= ${INCLUDEDIR}/bsnmp
More information about the svn-src-stable
mailing list