Date: Thu, 6 Jul 2000 23:33:42 -0400 (EDT) From: Jim Bloom <bloom@reyim.ne.mediaone.net> To: current@freebsd.org Subject: Problems building kernel with IPSEC_DEBUG Message-ID: <200007070333.XAA12677@reyim.ne.mediaone.net>
next in thread | raw e-mail | index | archive | help
While compiling a kernel with recent code (cvsup 22:30 -0400 July 6), I had some undefined symbols. I traced the symbols to netkey/key_debug.c and found that it did not test IPSEC_DEBUG correctly. I have attached a patch below. Jim Bloom bloom@acm.org Index: netkey/key_debug.c =================================================================== RCS file: /users/ncvs/src/sys/netkey/key_debug.c,v retrieving revision 1.11 diff -u -r1.11 key_debug.c --- netkey/key_debug.c 2000/07/04 16:35:14 1.11 +++ netkey/key_debug.c 2000/07/07 03:26:30 @@ -33,6 +33,7 @@ #ifdef _KERNEL #include "opt_inet.h" #include "opt_inet6.h" +#include "opt_ipsec.h" #endif #include <sys/types.h> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200007070333.XAA12677>