Messages in this thread Patch in this message |  | | Date | Fri, 24 Jan 1997 19:01:44 +0100 | From | Guilhem Lavaux <> | Subject | Re: Linux 2.1.22 Compile Problems |
| |
Flippie Spies wrote: > > Compiling 2.1.22 gives this problem. > > ld -m elf_i386 -Ttext 0xC0100000 -e > stext arch/i386/kernel/head.o init/main.o init/version.o \ > arch/i386/kernel/kernel.o arch/i386/mm/mm.o kernel/kernel.o > mm/mm.o fs/fs.o ipc/ipc.o net/network.a \ > fs/filesystems.a \ > drivers/block/block.a drivers/char/char.a drivers/net/net.a > drivers/cdrom/cdrom.a drivers/pci/pci.a \ > /usr/src/linux/arch/i386/lib/lib.a /usr/src/linux/lib/lib.a > /usr/src/linux/arch/i386/lib/lib.a -o vmlinux > net/network.a(sock_n_syms.o)(__ksymtab+0x198): undefined reference to > `inet_fcntl' > make: *** [vmlinux] Error 1 > > Is there a patch for this. > Just apply the patch below.
Guilhem. -- -----------------------------------| | /-\ LAVAUX Yves & Guilhem | | / \ /-\ | |-/ \ / \ /------------| | \ / \-/ | | \-/ ylavaux@pratique.fr | -----------------------------------| --- linux/net/netsyms.c.old Thu Jan 23 19:57:03 1997 +++ linux/net/netsyms.c Thu Jan 23 19:57:10 1997 @@ -158,7 +158,6 @@ EXPORT_SYMBOL(inet_shutdown); EXPORT_SYMBOL(inet_setsockopt); EXPORT_SYMBOL(inet_getsockopt); -EXPORT_SYMBOL(inet_fcntl); EXPORT_SYMBOL(inet_sendmsg); EXPORT_SYMBOL(inet_recvmsg); EXPORT_SYMBOL(tcp_sock_array); |  |