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:
Enji Cooper 2015-04-11 06:38:50 +00:00
parent d82f9014fa
commit ddecfa0403

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>