diff options
author | glebius <glebius@FreeBSD.org> | 2013-10-29 17:38:13 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2013-10-29 17:38:13 +0000 |
commit | b0bc7b1d54670db8d6c891ef9a5c1cda849a2fac (patch) | |
tree | cc23fdb574448e1dae2d0149e33fec5d0ea23fe7 /sbin/ifconfig/Makefile | |
parent | 8d47955f2179652405fb66d1978831eddd7a07cd (diff) | |
download | FreeBSD-src-b0bc7b1d54670db8d6c891ef9a5c1cda849a2fac.zip FreeBSD-src-b0bc7b1d54670db8d6c891ef9a5c1cda849a2fac.tar.gz |
Make userland tools honor WITHOUT_PF build option.
Tested by: dt71@gmx.com
Diffstat (limited to 'sbin/ifconfig/Makefile')
-rw-r--r-- | sbin/ifconfig/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/ifconfig/Makefile b/sbin/ifconfig/Makefile index a98840d..a10d1fb 100644 --- a/sbin/ifconfig/Makefile +++ b/sbin/ifconfig/Makefile @@ -40,7 +40,9 @@ LDADD+= -lbsdxml -lsbuf SRCS+= carp.c # SIOC[GS]VH support SRCS+= ifgroup.c # ... +.if ${MK_PF} != "no" SRCS+= ifpfsync.c # pfsync(4) support +.endif SRCS+= ifbridge.c # bridge support SRCS+= iflagg.c # lagg support |