| View previous topic :: View next topic |
| Author |
Message |
xantares
Joined: 30 Dec 2008 Posts: 16
|
Posted: Fri Oct 09, 2009 10:42 pm Post subject: [FIXED] fix for freetype |
|
|
Hi,
The freetype compilation error is still here (missing config.guess)
One can add the call to automake to the psplibraries/scripts/003-freetype.sh as follow :
| Code: | ## Bootstrap the source.
sh autogen.sh || { exit 1; }
cd builds/unix; automake --add-missing; cd ../.. |
Another way (cleaner ?) is to add it directly to the freetype's autogen.sh :
| Code: | run aclocal -I .
run libtoolize --copy
run autoconf
automake --add-missing |
I'm not an autotools expert, so maybe there's a more apppropriate way to do this.
Last edited by xantares on Wed Oct 21, 2009 11:13 pm; edited 1 time in total |
|
| Back to top |
|
 |
jimparis
Joined: 10 Jun 2005 Posts: 1179 Location: Boston
|
Posted: Sat Oct 10, 2009 3:55 pm Post subject: |
|
|
| On my system, running "libtoolize --copy" creates config.guess. I don't see why it doesn't on your system, or how adding automake would fix that anyway. |
|
| Back to top |
|
 |
xantares
Joined: 30 Dec 2008 Posts: 16
|
Posted: Wed Oct 21, 2009 11:08 pm Post subject: |
|
|
Rev 2481:
| Quote: | Update config.sub, install-sh, and config.guess from latest libtool.
Old versions of libtool would re-copy config.guess with "libtoolize --copy",
but new versions need "libtoolize --copy --install". Instead of trying to
detect the version, we'll just add config.guess to the repository for now. |
Thanks jim, it works now |
|
| Back to top |
|
 |
|