Module Name: src
Committed By: pgoyette
Date: Sun Dec 10 00:29:25 UTC 2023
Modified Files:
src/sys/modules/compat_90: Makefile
Log Message:
Default the build of compat_90 module to include IPv6, as is done
for other INET6-sensitive modules (see if_lagg).
XXX Pullup to -10 (will add to existing ticket)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/modules/compat_90/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/modules/compat_90/Makefile
diff -u src/sys/modules/compat_90/Makefile:1.2 src/sys/modules/compat_90/Makefile:1.3
--- src/sys/modules/compat_90/Makefile:1.2 Sat Dec 9 15:21:01 2023
+++ src/sys/modules/compat_90/Makefile Sun Dec 10 00:29:24 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2023/12/09 15:21:01 pgoyette Exp $
+# $NetBSD: Makefile,v 1.3 2023/12/10 00:29:24 pgoyette Exp $
.include "../Makefile.inc"
@@ -7,6 +7,12 @@
KMOD= compat_90
CPPFLAGS+= -DCOMPAT_90
+CPPFLAGS+= -DINET
+
+# Remove/comment the following if the target kernel on which the
+# module may be loaded doesn't have IPv6. Enable this by default.
+
+CPPFLAGS+= -DINET6
SRCS+= compat_90_mod.c
SRCS+= net_inet6_nd_90.c