aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-12-21 10:49:29 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-12-21 10:49:29 +0000
commit731db6a428d2389caf3795ff50f1895f04b80899 (patch)
tree89a40f7c173c6b1d806a55aabbfb302e1bef918c /sys/modules
parent39a855c2a172e19ec53d22a94f308bbf259dfcf7 (diff)
downloadsrc-731db6a428d2389caf3795ff50f1895f04b80899.tar.gz
src-731db6a428d2389caf3795ff50f1895f04b80899.zip
NOINET6 -> NO_INET6
Notes
Notes: svn path=/head/; revision=139115
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/if_gif/Makefile4
-rw-r--r--sys/modules/ipfilter/Makefile2
-rw-r--r--sys/modules/pf/Makefile2
3 files changed, 4 insertions, 4 deletions
diff --git a/sys/modules/if_gif/Makefile b/sys/modules/if_gif/Makefile
index e934f5b4acbf..df04cba7ba0c 100644
--- a/sys/modules/if_gif/Makefile
+++ b/sys/modules/if_gif/Makefile
@@ -5,14 +5,14 @@
KMOD= if_gif
SRCS= if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mac.h \
opt_mrouting.h
-.if !defined(NOINET6)
+.if !defined(NO_INET6)
SRCS+= in6_gif.c
.endif
opt_inet.h:
echo "#define INET 1" > ${.TARGET}
-.if !defined(NOINET6)
+.if !defined(NO_INET6)
opt_inet6.h:
echo "#define INET6 1" > ${.TARGET}
.endif
diff --git a/sys/modules/ipfilter/Makefile b/sys/modules/ipfilter/Makefile
index 7297cd238447..4b7aca713cd1 100644
--- a/sys/modules/ipfilter/Makefile
+++ b/sys/modules/ipfilter/Makefile
@@ -6,7 +6,7 @@ KMOD= ipl
SRCS= mlfk_ipl.c ip_nat.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \
ip_log.c ip_fil.c fil.c
-.if !defined(NOINET6)
+.if !defined(NO_INET6)
CFLAGS+= -DUSE_INET6
.endif
CFLAGS+= -I${.CURDIR}/../../contrib/ipfilter
diff --git a/sys/modules/pf/Makefile b/sys/modules/pf/Makefile
index f68e7493ebcb..79798c858eb1 100644
--- a/sys/modules/pf/Makefile
+++ b/sys/modules/pf/Makefile
@@ -20,7 +20,7 @@ opt_inet.h:
echo "#define INET 1" > opt_inet.h
opt_inet6.h:
-.if defined(NOINET6)
+.if defined(NO_INET6)
echo > opt_inet6.h
.else
echo "#define INET6 1" > opt_inet6.h