From 3bd82a552f6fbdaeb61327f256cc589622c1806c Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Sun, 23 Jan 2000 10:41:48 +0000 Subject: [PATCH] Hmm, don't compile in INET6, IPX or NETATALK support for the moment :-( I think we need some sort of stub variable and a ``is this queue available'' flag. --- sys/modules/if_tun/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/modules/if_tun/Makefile b/sys/modules/if_tun/Makefile index 704fa2e123a4..afd05c22a79c 100644 --- a/sys/modules/if_tun/Makefile +++ b/sys/modules/if_tun/Makefile @@ -15,12 +15,12 @@ opt_inet.h: echo "#define INET 1" > opt_inet.h opt_inet6.h: - echo "#define INET6 1" > opt_inet6.h + echo "#undef INET6" > opt_inet6.h opt_atalk.h: - echo "#define NETATALK 1" > opt_atalk.h + echo "#undef NETATALK" > opt_atalk.h opt_ipx.h: - echo "#define IPX 1" > opt_ipx.h + echo "#undef IPX" > opt_ipx.h .include