- a fix for the freetype config.guess error: while old versions of libtoolize create the config.guess file automatically, new versions require the "--install" option. Rather than attempt to detect the libtool version, we'll just put a generated config.guess in svn.
- a fix for the recent configure script errors relating to fopen, fclose, etc. The old formula of is technically wrong, and it should be
Code: Select all
LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \ ./configure --host psp --prefix=$(psp-config --psp-prefix)
I made this change in various README.PSP files and in all psplibraries scripts.Code: Select all
LDFLAGS="-L$(psp-config --pspsdk-path)/lib" LIBS="-lc -lpspuser" \ ./configure --host psp --prefix=$(psp-config --psp-prefix)
- a fix for a bug in libogg that's triggered by the above change
The psplibraries script should run on ubuntu 9.10 with no problems now (assuming you've installed the psptoolchain and the prerequisites).