mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
d82f9014fa
commit
ddecfa0403
1 changed files with 6 additions and 4 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue