- Timestamp:
- Jan 30, 2006, 12:39:30 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/config.h.in
r6532 r6838 6 6 /* in which debug mode we are */ 7 7 #undef DEBUG 8 9 /* Define to 1 if you have the <AL/al.h> header file. */10 #undef HAVE_AL_AL_H11 8 12 9 /* Define to 1 if you have the <avcodec.h> header file. */ -
trunk/configure.ac
r6627 r6838 98 98 DEBUG=4 99 99 else 100 if test x$DEBUG = x0 || test x$DEBUG = x1 || test x$DEBUG = x2 || test x$DEBUG = x3 || test x$DEBUG = x4 || test x$DEBUG = x5 ; then 100 101 echo "yes: setting debuglevel to to $DEBUG" 102 else 103 echo "yes: invalid Value for Debug ($DEBUG). setting to 4(DEBUG)" 104 DEBUG=4 105 fi 101 106 fi 102 107 AC_DEFINE_UNQUOTED(DEBUG, $DEBUG, [in which debug mode we are]) … … 338 343 # openAL # 339 344 #--------# 340 # checking for openAL-headers 341 AC_CHECK_HEADERS([AL/al.h] ,, 342 [AC_MSG_ERROR([cannot find openAL header.])]) 343 # checking for openAL-lib 344 AC_CHECK_LIB([OpenAL32], [main], [FOUND_OPENAL=yes; LIBS="$LIBS -lOpenAL32"]) 345 AC_CHECK_LIB([ALut], [main], [FOUND_ALUT=yes; LIBS="-lALut $LIBS"]) 346 if test x$FOUND_OPENAL != xyes ; then 347 echo "------------------" 348 echo "openal library not found." 349 echo "please install the openal library, which can be found at http://www.openal.org" 350 echo "------------------" 351 exit -1 352 fi 353 345 AX_CHECK_REQUIRED_HEADER_LIB([AL/al.h], [OpenAL32], [main],,, [http://www.openal.org]) 354 346 355 347 #-----------# … … 407 399 # openAL # 408 400 #--------# 409 410 401 AX_CHECK_REQUIRED_HEADER_LIB([AL/al.h], [openal], [main],,, [http://www.openal.org]) 411 AX_CHECK_HEADER_LIB([AL/alut.h], [alut], [main],,, [http://www.openal.org])412 402 413 403 #-----#
Note: See TracChangeset
for help on using the changeset viewer.