configure.ac: Move OSS to Audio Output Plugins (nonstreaming), add header.
This commit is contained in:
parent
294cce2710
commit
33641df09c
17
configure.ac
17
configure.ac
@ -928,6 +928,16 @@ fi
|
|||||||
|
|
||||||
AM_CONDITIONAL(HAVE_OPENAL, test x$enable_openal = xyes)
|
AM_CONDITIONAL(HAVE_OPENAL, test x$enable_openal = xyes)
|
||||||
|
|
||||||
|
dnl ---------------------------- Open Sound System ----------------------------
|
||||||
|
if test x$enable_oss = xyes; then
|
||||||
|
AC_CHECK_HEADER(sys/soundcard.h,
|
||||||
|
[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],
|
||||||
|
[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);
|
||||||
|
enable_oss=no])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AM_CONDITIONAL(HAVE_OSS, test x$enable_oss = xyes)
|
||||||
|
|
||||||
if test x$enable_pipe_output = xyes; then
|
if test x$enable_pipe_output = xyes; then
|
||||||
AC_DEFINE([ENABLE_PIPE_OUTPUT], 1,
|
AC_DEFINE([ENABLE_PIPE_OUTPUT], 1,
|
||||||
[Define to enable support for writing audio to a pipe])
|
[Define to enable support for writing audio to a pipe])
|
||||||
@ -975,14 +985,7 @@ esac
|
|||||||
|
|
||||||
AM_CONDITIONAL(ENABLE_SOLARIS_OUTPUT, test x$enable_solaris_output = xyes)
|
AM_CONDITIONAL(ENABLE_SOLARIS_OUTPUT, test x$enable_solaris_output = xyes)
|
||||||
|
|
||||||
if test x$enable_oss = xyes; then
|
|
||||||
AC_CHECK_HEADER(sys/soundcard.h,
|
|
||||||
[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],
|
|
||||||
[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);
|
|
||||||
enable_oss=no])
|
|
||||||
fi
|
|
||||||
|
|
||||||
AM_CONDITIONAL(HAVE_OSS, test x$enable_oss = xyes)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user