Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3508 in orxonox.OLD for orxonox/branches/soundEngine/configure.ac


Ignore:
Timestamp:
Mar 11, 2005, 10:34:35 PM (20 years ago)
Author:
bensch
Message:

orxonox/branche/soundManager: added sound_control and it compiles

File:
1 edited

Legend:

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

    r3506 r3508  
    367367
    368368#-----------#
     369# SDL_mixer #
     370#-----------#
     371AC_CHECK_HEADERS([SDL/SDL_mixer.h] ,,
     372      [AC_MSG_ERROR([sdl_mixer not found])])
     373# checking for SDL_mixer-lib
     374AC_CHECK_LIB([SDL_mixer], [main], [FOUND_SDL_mixer=yes])
     375   if test x$FOUND_SDL_mixer = xyes ; then
     376     LIBS="$LIBS -lSDL_mixer"
     377   else
     378      echo "------------------"
     379      echo "SDL_mixer library not found."
     380      echo "please install the SDL_mixer library, which can be found at http://www.libsdl.org/projects/SDL_mixer/"
     381      echo "------------------"
     382      exit -1
     383   fi   
     384
     385
     386#-----------#
    369387# SDL_Image #
    370388#-----------#
Note: See TracChangeset for help on using the changeset viewer.