2003-09-17 14:14:05

by Remi Colinet

[permalink] [raw]
Subject: 2.6.0-test5-bk4 : compile error

Hi,

AR arch/i386/lib/lib.a
GEN .version
CHK include/linux/compile.h
UPD include/linux/compile.h
CC init/version.o
LD init/built-in.o
LD .tmp_vmlinux1
net/built-in.o: In function `__vcc_seq_open':
net/built-in.o(.text+0x8a27e): undefined reference to `try_atm_clip_ops'
make: *** [.tmp_vmlinux1] Error 1

Compiled error caused by net/atm/proc.c line 195. I was able to compile
with :

--- net/atm/proc.c.org 2003-09-17 16:14:30.000000000 +0200
+++ net/atm/proc.c 2003-09-17 16:16:53.000000000 +0200
@@ -192,7 +192,9 @@
goto out_kfree;

state->family = family;
+#if defined(CONFIG_ATM_CLIP) || defined(CONFIG_ATM_CLIP_MODULE)
state->clip_info = try_atm_clip_ops();
+#endif

seq = file->private_data;
seq->private = state;

Remi