Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Mar 2019 22:51:19 -0800 (PST)
From:      "Rodney W. Grimes" <freebsd@gndrsh.dnsmgr.net>
To:        Andriy Voskoboinyk <avos@freebsd.org>
Cc:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r344748 - head/sbin/ifconfig
Message-ID:  <201903040651.x246pJDu075170@ gndrsh.dnsmgr.net>
In-Reply-To: <201903040347.x243l6ZX087444@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
> Author: avos
> Date: Mon Mar  4 03:47:06 2019
> New Revision: 344748
> URL: https://svnweb.freebsd.org/changeset/base/344748
> 
> Log:
>   Allow to build ifconfig(8) without wireless support
>   
>   The change removes SIOC[GS]IEEE80211 handling from ifconfig(8)
>   if WITHOUT_WIRELESS_SUPPORT=yes is set in src.conf(5).
>   
>   Reviewed by:	bz
>   MFC after:	1 week
>   Differential Revision:	https://reviews.freebsd.org/D19289

Thank you, this should help dexter@ with the build option survey
stuff that phk@ wrote he has been running.

> Modified:
>   head/sbin/ifconfig/Makefile
> 
> Modified: head/sbin/ifconfig/Makefile
> ==============================================================================
> --- head/sbin/ifconfig/Makefile	Mon Mar  4 03:38:43 2019	(r344747)
> +++ head/sbin/ifconfig/Makefile	Mon Mar  4 03:47:06 2019	(r344748)
> @@ -39,8 +39,10 @@ SRCS+=	ifipsec.c		# IPsec VTI
>  SRCS+=	sfp.c			# SFP/SFP+ information
>  LIBADD+=	m
>  
> +.if ${MK_WIRELESS_SUPPORT} != "no"
>  SRCS+=	ifieee80211.c		# SIOC[GS]IEEE80211 support
>  LIBADD+=	80211
> +.endif
>  
>  SRCS+=	carp.c			# SIOC[GS]VH support
>  SRCS+=	ifgroup.c		# ...
> 
> 

-- 
Rod Grimes                                                 rgrimes@freebsd.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903040651.x246pJDu075170>