Date: Tue, 20 Jan 1998 18:02:44 +0100 (CET) From: root@mc5sys.in-berlin.de (Frank Gruender) To: freebsd-isdn@FreeBSD.ORG Subject: Current 3.0 and bisdn broken -> Patch Message-ID: <m0xuh4W-00042eC@mc5sys.in-berlin.de>
next in thread | raw e-mail | index | archive | help
Moin! Compling current-3.0 kernel using bisdntest-3 makes some trouble like this: [...] -I../.. -I../../../include -DBROKEN_KEYBOARD_RESET -DHARDFONTS -DTELES_HAS_MEMCPYB -DNFS -DFFS -DKERNEL -include opt_global.h -c vers.c loading kernel b_isdn.o: Undefined symbol `_ipi_attach' referenced from text segment b_isdn.o: Undefined symbol `_ipi_input' referenced from text segment b_isdn.o: Undefined symbol `_ipi_out' referenced from text segment b_isdn.o: Undefined symbol `_ipi_connect' referenced from text segment b_isdn.o: Undefined symbol `_ipi_disconnect' referenced from text segment *** Error code 1 Stop. Here is my patch to fix the problem... Ciaoo... Frank *** b_isdnipi.c.orig Mon Jan 19 23:01:19 1998 --- b_isdnipi.c Tue Jan 20 17:57:02 1998 *************** *** 101,106 **** --- 101,108 ---- * *---------------------------------------------------------------------------*/ + #include "opt_inet.h" + #ifdef INET #include "ipi.h" *************** *** 114,119 **** --- 116,122 ---- #if BSD > 199306 && defined (__FreeBSD__) #include <sys/ioccom.h> #include <sys/sockio.h> + #include <sys/malloc.h> #else #include <sys/ioctl.h> #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?m0xuh4W-00042eC>