Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3885 in orxonox.OLD for orxonox/branches/sound_engine/configure.ac


Ignore:
Timestamp:
Apr 18, 2005, 11:22:38 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/sound_engine: configure works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/sound_engine/configure.ac

    r3863 r3885  
    420420## CHECKING FOR HEADERS AND LIBS ##
    421421###################################
     422#-----------#
     423# SDL_mixer #
     424#-----------#
     425AC_CHECK_HEADERS([SDL/SDL_mixer.h] ,,
     426      [AC_MSG_ERROR([sdl_mixer not found])])
     427# checking for SDL_mixer-lib
     428AC_CHECK_LIB([SDL_mixer], [main], [FOUND_SDL_mixer=yes])
     429   if test x$FOUND_SDL_mixer = xyes ; then
     430     LIBS="$LIBS -lSDL_mixer"
     431   else
     432      echo "------------------"
     433      echo "SDL_mixer library not found."
     434      echo "please install the SDL_mixer library, which can be found at http://www.libsdl.org/projects/SDL_mixer/"
     435      echo "------------------"
     436      exit -1
     437   fi   
    422438
    423439#---------#
Note: See TracChangeset for help on using the changeset viewer.