diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2007-09-10 07:46:51 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2007-09-10 07:46:51 +0000 |
commit | ce2b0db3129cc4f3f20c322fd6c727ce663838cc (patch) | |
tree | 90a79ae61c7f231dd9fbd5dcd99c814b2ad3ab05 /configure.ac | |
parent | 6635397f7a397bdd430fc062cc9e8c5bd3efed82 (diff) | |
download | mana-ce2b0db3129cc4f3f20c322fd6c727ce663838cc.tar.gz mana-ce2b0db3129cc4f3f20c322fd6c727ce663838cc.tar.bz2 mana-ce2b0db3129cc4f3f20c322fd6c727ce663838cc.tar.xz mana-ce2b0db3129cc4f3f20c322fd6c727ce663838cc.zip |
Added support for True Type Fonts.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c3f14337..1ee6dfb7 100755 --- a/configure.ac +++ b/configure.ac @@ -79,12 +79,15 @@ 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([guichan_sdl], [gcnSDL], , -AC_MSG_ERROR([ *** Unable to find Guichan SDL library (http://guichan.sf.net/)])) +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/)])) +AC_CHECK_LIB([guichan_sdl], [gcnSDL], , +AC_MSG_ERROR([ *** Unable to find Guichan SDL library (http://guichan.sf.net/)])) + AC_CHECK_LIB([enet], [enet_initialize], , AC_MSG_ERROR([ *** Unable to find enet library (http://enet.bespin.org/)])) |