Let's see if we can fix the NOINET if_gif(4) module build after r276215

going by example.
This commit is contained in:
Bjoern A. Zeeb 2014-12-26 00:01:00 +00:00
parent 2f88b3d20a
commit e43b65f951
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=276224

View File

@ -6,7 +6,11 @@ SYSDIR?=${.CURDIR}/../..
.PATH: ${SYSDIR}/net ${SYSDIR}/netinet ${SYSDIR}/netinet6
KMOD= if_gif
SRCS= if_gif.c in_gif.c opt_inet.h opt_inet6.h
SRCS= if_gif.c opt_inet.h opt_inet6.h
.if ${MK_INET_SUPPORT} != "no"
SRCS+= in_gif.c
.endif
.if ${MK_INET6_SUPPORT} != "no"
SRCS+= in6_gif.c