From bcae2312afcaa3b4fd34daac5baa64dbb82f57c5 Mon Sep 17 00:00:00 2001 From: eivind Date: Thu, 8 Jan 1998 23:42:31 +0000 Subject: Make INET a proper option. This will not make any of object files that LINT create change; there might be differences with INET disabled, but hardly anything compiled before without INET anyway. Now the 'obvious' things will give a proper error if compiled without inet - ipx_ip, ipfw, tcp_debug. The only thing that _should_ work (but can't be made to compile reasonably easily) is sppp :-( This commit move struct arpcom from to . --- sys/netinet/tcp_debug.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sys/netinet/tcp_debug.c') diff --git a/sys/netinet/tcp_debug.c b/sys/netinet/tcp_debug.c index 3b0edd8..d7a1d4e 100644 --- a/sys/netinet/tcp_debug.c +++ b/sys/netinet/tcp_debug.c @@ -31,11 +31,16 @@ * SUCH DAMAGE. * * @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93 - * $Id: tcp_debug.c,v 1.10 1997/08/02 14:32:55 bde Exp $ + * $Id: tcp_debug.c,v 1.11 1997/09/16 18:36:04 joerg Exp $ */ +#include "opt_inet.h" #include "opt_tcpdebug.h" +#ifndef INET +#error The option TCPDEBUG requires option INET. +#endif + #ifdef TCPDEBUG /* load symbolic names */ #define PRUREQUESTS -- cgit v1.1