Couldn't install FreeType
Couldn't install FreeType
Hi,
how could I write text with external font, please?
Thanks.
kweensey
Problem is here: http://forums.ps2dev.org/viewtopic.php?p=79372#79378
how could I write text with external font, please?
Thanks.
kweensey
Problem is here: http://forums.ps2dev.org/viewtopic.php?p=79372#79378
Last edited by kweensey on Wed Feb 11, 2009 3:27 pm, edited 2 times in total.
I like FreeType but I can't install it. I did exactly what is here but after executing
I got
I don't get it. :( I really want to use this. Could anybody help me with that, please?
Thanks.
kweensey
Code: Select all
LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \
./configure --host psp --prefix=$(psp-config --psp-prefix)
Code: Select all
cd builds/unix; ./configure --host psp --prefix=/usr/local/pspdev/psp
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
checking build system type... /bin/sh: ./config.guess: No such file or directory
configure: error: cannot guess build type; you must specify one
make: *** [builds/unix/unix-def.mk] Error 1
Thanks.
kweensey
Use the psplibraries installer from the repo. That will install most of the major libraries needed for PSP apps, including SDL and freetype.
If you followed one of the guides for installing the PSP toolchain, it should have instructed you on doing that immediately after the toolchain installer was done.
If you followed one of the guides for installing the PSP toolchain, it should have instructed you on doing that immediately after the toolchain installer was done.
I had this problem too.
I found out is was caused by libtool.
this was my solution
I found out is was caused by libtool.
this was my solution
jojojoris wrote:I Found some sort of solution.
After i run the ./configure script from freetype i replaced the libtool with the libtool provided by the SDL librarie.
When i now run make it compiles.
If i want to do "make install" i had to tweak the script 003-freetype.sh
[/code]Code: Select all
#!/bin/sh # freetype.sh by Dan Peori (danpeori@oopo.net) ## Download the latest source code. ##Removed ## Enter the source directory. cd freetype || { exit 1; } ## Configure the build. ## removed autogen.sh ## removed confidure script ## Compile and install. make clean && make -j2 && make install && make clean || { exit 1; }