From: Duilio J. P. <dp...@fl...> - 2005-03-12 22:10:24
|
I have commited an initial backend for gtk+. Still missing some components, but is enough for test, specially for finding building problems and such. About building problems with this module, if when 'make install' you have something like: /bin/sh ../libtool --mode=install /usr/bin/install -c liblvwidget_gtk2.la /home/dprotti/lib/liblvwidget_gtk2.la /usr/bin/install -c .libs/liblvwidget_gtk2.lai /home/dprotti/lib/liblvwidget_gtk2.la /usr/bin/install: cannot stat `.libs/liblvwidget_gtk2.lai': No such file or directory make[2]: *** [install-libLTLIBRARIES] Error 1 make[1]: *** [install-am] Error 2 make: *** [install-recursive] Error 1 that's due to and odd error on automake's. I'm not shure why, but sometimes automake gets confused when building two or more different libtool targets, and this is the case. You can fix it editing ltmain.sh script on top source directory, looking for something like: # Install the pseudo-library for information purposes. name=`$echo "X$file" | $Xsed -e "s%^.*/%%"` instname="$dir/$name"i $show "$install_prog $instname $destdir/$name" $run eval "$install_prog $instname $destdir/$name" || exit $? just remove that tail 'i' on third line above, and rebuild everything. I have notices of other projects having the same problem. Of course, we must make distro packages with the hacked ltmain.sh. Please test! Bye, Duilio. |