I'm trying to build libglade and I'm having trouble with this piece of
code:
[...]
creating libglade.la
(cd .libs && rm -f libglade.la && ln -s ../libglade.la libglade.la)
/bin/sh ../libtool --mode=link gcc -O3 -fomit-frame-pointer -pipe -s
-mcpu=pentiumpro -march=pentiumpro -ffast-math -fexpensive-optimizations
-Wall -Wunused -o libglade-gnome.la -rpath /usr//lib -version-info
4:0:4 glade-gnome.lo -rdynamic -L/usr//lib -L/usr/lib -L/usr/X11R6/lib
-rdynamic -lgnomeui -lart_lgpl -lgdk_imlib -lSM -lICE -lgtk -lgdk
-lgmodule -lXi -lXext -lX11 -lgnome -lgnomesupport -lesd -laudiofile -lm
-ldb1 -lglib -ldl -L/usr/lib -lxml -lz
glade-bonobo.c: In function `gnome_control_new':
glade-bonobo.c:53: `BonoboPropertyBagClient' undeclared (first use in
this function)
glade-bonobo.c:53: (Each undeclared identifier is reported only once
glade-bonobo.c:53: for each function it appears in.)
glade-bonobo.c:53: `pbc' undeclared (first use in this function)
glade-bonobo.c:53: warning: statement with no effect
glade-bonobo.c:54: parse error before `*'
glade-bonobo.c:73: too few arguments to function
`bonobo_control_frame_get_control_property_bag'
glade-bonobo.c:77: `tmp' undeclared (first use in this function)
glade-bonobo.c:81: too few arguments to function
`bonobo_property_bag_client_get_property_type'
glade-bonobo.c:87: too few arguments to function
`bonobo_property_bag_client_set_value_gboolean'
glade-bonobo.c:91: too few arguments to function
`bonobo_property_bag_client_set_value_string'
glade-bonobo.c:95: too few arguments to function
`bonobo_property_bag_client_set_value_glong'
glade-bonobo.c:99: too few arguments to function
`bonobo_property_bag_client_set_value_gfloat'
glade-bonobo.c:103: too few arguments to function
`bonobo_property_bag_client_set_value_gdouble'
make[2]: *** [glade-bonobo.lo] Error 1
make[2]: *** Waiting for unfinished jobs....
rm -fr .libs/libglade-gnome.la .libs/libglade-gnome.*
.libs/libglade-gnome.*
[...]
I couldn't find any reference to "BonoboPropertyBagClient". On
bonobo-0.18-2mdk there are only references to "BonoboPropertyBag".
Ektanoor