diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2007-09-10 07:46:51 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-12-29 15:19:33 +0100 |
commit | 7cc4dfe0c26fa84e6b9245b6874a853405dea87a (patch) | |
tree | 34f71d91195617c11cae132b67ce6f4144ab7be5 /configure.ac | |
parent | eecda4921a72acd30955c14e1fb457c5ac690a2a (diff) | |
download | mana-7cc4dfe0c26fa84e6b9245b6874a853405dea87a.tar.gz mana-7cc4dfe0c26fa84e6b9245b6874a853405dea87a.tar.bz2 mana-7cc4dfe0c26fa84e6b9245b6874a853405dea87a.tar.xz mana-7cc4dfe0c26fa84e6b9245b6874a853405dea87a.zip |
Added support for True Type Fonts.
(cherry-picked from mainline)
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 955b93a9..556f6beb 100755 --- a/configure.ac +++ b/configure.ac @@ -55,6 +55,9 @@ AC_CHECK_LIB(SDL_image, IMG_LoadPNG_RW, , AC_MSG_ERROR([ *** Unable to find SDL_image library with PNG support (http://www.libsdl.org/projects/SDL_image/)])) +AC_CHECK_LIB(SDL_ttf, TTF_Quit, , +AC_MSG_ERROR([ *** Unable to find SDL_ttf library (http://www.libsdl.org/projects/SDL_ttf/)])) + AC_CHECK_LIB([SDL_mixer], [Mix_OpenAudio], , AC_MSG_ERROR([ *** Unable to find SDL_mixer library (http://www.libsdl.org/projects/SDL_mixer/)])) |