svn commit: r276224 - head/sys/modules/if_gif

Bjoern A. Zeeb bz at FreeBSD.org
Fri Dec 26 00:01:02 UTC 2014


Author: bz
Date: Fri Dec 26 00:01:00 2014
New Revision: 276224
URL: https://svnweb.freebsd.org/changeset/base/276224

Log:
  Let's see if we can fix the NOINET if_gif(4) module build after r276215
  going by example.

Modified:
  head/sys/modules/if_gif/Makefile

Modified: head/sys/modules/if_gif/Makefile
==============================================================================
--- head/sys/modules/if_gif/Makefile	Thu Dec 25 23:57:31 2014	(r276223)
+++ head/sys/modules/if_gif/Makefile	Fri Dec 26 00:01:00 2014	(r276224)
@@ -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


More information about the svn-src-head mailing list