Assume INET, INET6, and TCP_OFFLOAD when the driver is built out of tree and

KERNBUILDDIR is not set.

MFC after:	2 weeks
This commit is contained in:
Navdeep Parhar 2012-08-14 23:08:49 +00:00
parent edd3e98f13
commit ae11e5c996
2 changed files with 25 additions and 0 deletions

View File

@ -2,6 +2,8 @@
# $FreeBSD$
#
.include <bsd.own.mk>
CXGBE = ${.CURDIR}/../../../dev/cxgbe
.PATH: ${CXGBE} ${CXGBE}/common
@ -17,4 +19,17 @@ CFLAGS+= -I${CXGBE}
# Provide the timestamp of a packet in its header mbuf.
#CFLAGS+= -DT4_PKT_TIMESTAMP
.if !defined(KERNBUILDDIR)
.if ${MK_INET_SUPPORT} != "no"
opt_inet.h:
@echo "#define INET 1" > ${.TARGET}
@echo "#define TCP_OFFLOAD 1" >> ${.TARGET}
.endif
.if ${MK_INET6_SUPPORT} != "no"
opt_inet6.h:
@echo "#define INET6 1" > ${.TARGET}
.endif
.endif
.include <bsd.kmod.mk>

View File

@ -2,6 +2,8 @@
# $FreeBSD$
#
.include <bsd.own.mk>
CXGBE = ${.CURDIR}/../../../dev/cxgbe
.PATH: ${CXGBE}/tom
@ -12,4 +14,12 @@ SRCS+= opt_inet.h
CFLAGS+= -I${CXGBE}
.if !defined(KERNBUILDDIR)
.if ${MK_INET_SUPPORT} != "no"
opt_inet.h:
echo "#define INET 1" > ${.TARGET}
echo "#define TCP_OFFLOAD 1" >> ${.TARGET}
.endif
.endif
.include <bsd.kmod.mk>