svn commit: r359291 - in head: lib/libifconfig usr.sbin/wlandebug

Emmanuel Vadot manu at FreeBSD.org
Wed Mar 25 01:33:31 UTC 2020


Author: manu
Date: Wed Mar 25 01:31:26 2020
New Revision: 359291
URL: https://svnweb.freebsd.org/changeset/base/359291

Log:
  wlandebug: Add include path for libifconfig as it is a internallib
  
  Reviewed by:	bapt
  Differential Revision:	https://reviews.freebsd.org/D24172

Modified:
  head/lib/libifconfig/Makefile
  head/usr.sbin/wlandebug/Makefile

Modified: head/lib/libifconfig/Makefile
==============================================================================
--- head/lib/libifconfig/Makefile	Wed Mar 25 00:31:42 2020	(r359290)
+++ head/lib/libifconfig/Makefile	Wed Mar 25 01:31:26 2020	(r359291)
@@ -10,8 +10,9 @@ SRCS=		libifconfig.c libifconfig_carp.c libifconfig_in
 SRCS+=		libifconfig_inet6.c libifconfig_internal.c libifconfig_lagg.c
 SRCS+=		libifconfig_media.c
 
-INCSDIR=	${INCLUDEDIR}
-INCS=		libifconfig.h
+# If libifconfig become public uncomment those two lines
+#INCSDIR=	${INCLUDEDIR}
+#INCS=		libifconfig.h
 
 #MAN=		libifconfig.3
 

Modified: head/usr.sbin/wlandebug/Makefile
==============================================================================
--- head/usr.sbin/wlandebug/Makefile	Wed Mar 25 00:31:42 2020	(r359290)
+++ head/usr.sbin/wlandebug/Makefile	Wed Mar 25 01:31:26 2020	(r359291)
@@ -3,6 +3,7 @@
 PROG=	wlandebug
 MAN=	wlandebug.8
 
+CFLAGS+=	-I${SRCTOP}/lib/libifconfig
 LIBADD+=	ifconfig
 
 WARNS?=	2


More information about the svn-src-all mailing list