I get the following error output when using LFS-6.4 and
BLFS-SVN-20090718 to compile libbonobo-2.18.0:
gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -Wall -Wmissing-prototypes
-DORBIT2=1 -pthread -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0
-I/usr/lib/glib-2.0/include -DPREFI
X=\"/usr\" -DBONOBO_LIB
Not sure if this is fixed upstream...
Looks like the G_GNUC_FUNCTION macro is deprecated. Here is the
workaround I used to get it to compile:
for f in `grep -H -r -s "G_GNUC_FUNCTION" * | cut -d: -f1`; do sed -i
"s/G_GNUC_FUNCTION/G_STRFUNC/g" $f; done
BLFS DEVS: Please let me know if there is