Changeset 719

Show
Ignore:
Timestamp:
04/24/10 11:34:25 (2 years ago)
Author:
conrad
Message:

fix OSS configuration (remove ALSA requirement)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sweep/trunk/configure.ac

    r718 r719  
    372372  if test "x${ac_cv_header_sys_soundcard_h}" = xyes || \ 
    373373    test "x${ac_cv_header_machine_soundcard_h}" = xyes; then 
    374     if test "x$ac_enable_alsa" = xyes ; then 
    375       AC_DEFINE([DRIVER_OSS], [], [Define if we have and want OSS.]) 
    376       dnl Check for NetBSD's OSS compatability layer 
    377       AC_CHECK_LIB(ossaudio, _oss_ioctl, LIBS="$LIBS -lossaudio") 
    378       sweep_config_driver="$sweep_config_driver OSS" 
    379     fi 
     374    AC_DEFINE([DRIVER_OSS], [], [Define if we have and want OSS.]) 
     375    dnl Check for NetBSD's OSS compatability layer 
     376    AC_CHECK_LIB(ossaudio, _oss_ioctl, LIBS="$LIBS -lossaudio") 
     377    sweep_config_driver="$sweep_config_driver OSS" 
    380378  fi 
    381379else