Fix the knob twiddling to work properly per src.opts.mk

MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
ngie 2015-04-11 06:38:50 +00:00
parent 692e8bf361
commit 79dd32579d

View File

@ -1,14 +1,16 @@
# $FreeBSD$
.include <src.opts.mk>
PROG= so_setfib
MAN=
WARNS?= 6
.ifdef INET6
CFLAGS+= -DINET6
.endif
.ifdef INET
.if ${MK_INET} != "no"
CFLAGS+= -DINET
.endif
.if ${MK_INET6} != "no"
CFLAGS+= -DINET6
.endif
.include <bsd.prog.mk>