Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3921 in orxonox.OLD for orxonox/branches/openAL/configure.ac


Ignore:
Timestamp:
Apr 21, 2005, 11:48:52 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/openAL: now searching for the openAL-header and lib
@simon: i hope, this will suffice for you to start coding :)

File:
1 edited

Legend:

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

    r3906 r3921  
    421421###################################
    422422
     423#--------#
     424# openAL #
     425#--------#
     426# checking for openAL-headers
     427  AC_CHECK_HEADERS([AL/al.h] ,,
     428      [AC_MSG_ERROR([cannot find openAL header.])])
     429#fi
     430# checking for openAL-lib
     431  AC_CHECK_LIB([openal], [main], [FOUND_openal=yes])
     432     if test x$FOUND_openal = xyes ; then
     433       LIBS="$LIBS -lopenal"
     434     else
     435        echo "------------------"
     436        echo "openal library not found."
     437        echo "please install the openal library, which can be found at http://www.openal.org"
     438        echo "------------------"
     439        exit -1
     440     fi   
     441
    423442#---------#
    424443# SDL_ttf #
     
    439458        exit -1
    440459     fi   
     460
    441461
    442462#-----------#
Note: See TracChangeset for help on using the changeset viewer.