From: Michael W. <mw...@ic...> - 2004-10-18 07:48:56
|
On Sat, Oct 16, 2004 at 11:37:31PM +0200, Christian Lefebvre wrote: > On sam, 2004-10-16 at 20:38, Christian Lefebvre wrote: > > but those ones are still there ;-) > > - Makefile contains "READLINE_LIBS = no" instead of > > "READLINE_LIBS =" => modified dyrectly in generated > > Makefiles cause I don't know how it's generated. I would guess this is a bug in the autoconf/configure stuff. Haven't looked, though, and I am no autoconf expert :) > > - g_ptr_array_foreach not in my glibc 2.2.3 version => changed ^^^^^ I assume you mean glib (which is completely different from glibc.) mdbtools probably just depends on a different version of glib than the one you have installed. glib-2.0 does have g_ptr_array_foreach. I haven't looked at other versions. $ nm /usr/lib/libglib-2.0.a | grep g_ptr_array_foreach 00001220 T g_ptr_array_foreach I've just had a look in configure.in and it says: if test "$no_glib" = "yes"; then echo echo "glib 2.0 is required by MDB Tools." echo "It can be downloaded at www.gtk.org." echo exit 1 fi > > src/sql/mdbsql.c like before 1.31 version (thanks to "cvs diff" ;-) > > About the missing rows, I tried different variations, but > i've still not found why it doesn't works sometimes. Do you have old libmdb stuff lying around? That might somehow be interfering? I hope this helps. -- Michael Wood <mw...@ic...> |