svn commit: r291600 - in head: lib/lib80211 share/mk

Bryan Drewery bdrewery at FreeBSD.org
Tue Dec 1 17:38:54 UTC 2015


Author: bdrewery
Date: Tue Dec  1 17:38:52 2015
New Revision: 291600
URL: https://svnweb.freebsd.org/changeset/base/291600

Log:
  Fix underlinking in lib80211 and define static dependencies in src.libnames.mk
  so NO_SHARED works properly.
  
  Reported by:	Manfred Antar <null at pozo.com>
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/lib/lib80211/Makefile
  head/share/mk/src.libnames.mk

Modified: head/lib/lib80211/Makefile
==============================================================================
--- head/lib/lib80211/Makefile	Tue Dec  1 17:31:22 2015	(r291599)
+++ head/lib/lib80211/Makefile	Tue Dec  1 17:38:52 2015	(r291600)
@@ -8,6 +8,8 @@ SRCS=	lib80211_regdomain.c lib80211_ioct
 INCSDIR=	${INCLUDEDIR}/lib80211
 INCS=	lib80211_regdomain.h lib80211_ioctl.h
 
+LIBADD= sbuf bsdxml
+
 MAN=	lib80211.3
 
 CFLAGS+=-I${.CURDIR}

Modified: head/share/mk/src.libnames.mk
==============================================================================
--- head/share/mk/src.libnames.mk	Tue Dec  1 17:31:22 2015	(r291599)
+++ head/share/mk/src.libnames.mk	Tue Dec  1 17:38:52 2015	(r291600)
@@ -162,6 +162,7 @@ _LIBRARIES=	\
 		ypclnt \
 		z
 
+_DP_80211=	sbuf bsdxml
 _DP_archive=	z bz2 lzma bsdxml
 .if ${MK_OPENSSL} != "no"
 _DP_archive+=	crypto


More information about the svn-src-head mailing list