From: Theo S. <to...@sc...> - 2006-05-24 19:03:19
|
Hi there, i do an fresh checkout from cvs. ./configure --prefix=3D/usr --with-drivers=3DLUIse make this error follows: plugin_uptime.o plugin_wireless.o plugin_xmms.o -L/usr/local/lib=20 -lluise -lgd -lm drv_generic_graphic.o: In function=20 `drv_generic_graphic_init':drv_generic_graphic.c:(.text+0x11e6):=20 undefined reference to `Widget_Image' collect2: ld gab 1 als Ende-Status zur=FCck make[1]: *** [lcd4linux] Fehler 1 make[1]: Leaving directory `/home/tooly/test/lcd4linux' make: *** [all] Fehler 2 This little patch to the trick for me: diff -Naur lcd4linux.orig/Makefile.in lcd4linux/Makefile.in --- lcd4linux.orig/Makefile.in 2006-04-17 10:10:42.000000000 +0200 +++ lcd4linux/Makefile.in 2006-05-24 20:59:11.000000000 +0200 @@ -125,7 +125,7 @@ X_EXTRA_LIBS =3D @X_EXTRA_LIBS@ X_PRE_LIBS =3D @X_PRE_LIBS@ lcd4linux_OBJECTS =3D lcd4linux.o cfg.o debug.o drv.o evaluator.o hash.= o \ -layout.o pid.o timer.o thread.o udelay.o qprintf.o rgb.o widget.o \ +layout.o pid.o timer.o thread.o udelay.o qprintf.o rgb.o widget.o=20 widget_image.o \ widget_text.o widget_bar.o widget_icon.o widget_keypad.o widget_timer.o = \ widget_gpo.o plugin.o plugin_cfg.o plugin_math.o plugin_string.o \ plugin_test.o plugin_time.o Sorry can't say if it is necessary to modify more files. mfg Theo |