- Timestamp:
- Mar 31, 2005, 10:43:04 PM (20 years ago)
- Location:
- orxonox/branches/textEngine
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/textEngine/config.h.in
r3701 r3702 62 62 #undef HAVE_SDL_SDL_H 63 63 64 /* Define to 1 if you have the <SDL /SDL_ttf.h> header file. */65 #undef HAVE_SDL_ SDL_TTF_H64 /* Define to 1 if you have the <SDL_ttf.h> header file. */ 65 #undef HAVE_SDL_TTF_H 66 66 67 67 /* Define to 1 if you have the `sqrt' function. */ -
orxonox/branches/textEngine/configure
r3701 r3702 6107 6107 ################################### 6108 6108 6109 #-----------# 6110 # SDL_Image # 6111 #-----------# 6112 #if test x$def_sdl_ttf = xyes; then 6109 #---------# 6110 # SDL_ttf # 6111 #---------# 6113 6112 # checking for SDL_ttf-headers 6114 6113 6115 for ac_header in SDL /SDL_ttf.h6114 for ac_header in SDL_ttf.h 6116 6115 do 6117 6116 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` … … 6259 6258 6260 6259 else 6261 echo "sdl_ttf not found. falling back to other options"; def_sdl_ttf=no 6260 { { echo "$as_me:$LINENO: error: cannot find SDL_ttf header." >&5 6261 echo "$as_me: error: cannot find SDL_ttf header." >&2;} 6262 { (exit 1); exit 1; }; } 6262 6263 fi 6263 6264 … … 6265 6266 6266 6267 #fi 6267 #if test x$def_sdl_ttf = xyes; then6268 6268 # checking for SDL_ttf-lib 6269 6269 echo "$as_me:$LINENO: checking for main in -lSDL_ttf" >&5 … … 6338 6338 exit -1 6339 6339 fi 6340 #fi6341 6342 6340 6343 6341 #-----------# -
orxonox/branches/textEngine/configure.ac
r3701 r3702 398 398 ################################### 399 399 400 #-----------# 401 # SDL_Image # 402 #-----------# 403 #if test x$def_sdl_ttf = xyes; then 400 #---------# 401 # SDL_ttf # 402 #---------# 404 403 # checking for SDL_ttf-headers 405 AC_CHECK_HEADERS([SDL /SDL_ttf.h] ,,406 [ echo "sdl_ttf not found. falling back to other options"; def_sdl_ttf=no])404 AC_CHECK_HEADERS([SDL_ttf.h] ,, 405 [AC_MSG_ERROR([cannot find SDL_ttf header.])]) 407 406 #fi 408 #if test x$def_sdl_ttf = xyes; then409 407 # checking for SDL_ttf-lib 410 408 AC_CHECK_LIB([SDL_ttf], [main], [FOUND_SDL_ttf=yes]) … … 418 416 exit -1 419 417 fi 420 #fi421 422 418 423 419 #-----------#
Note: See TracChangeset
for help on using the changeset viewer.