configure.ac: default to enable_openal=auto
This commit is contained in:
parent
672fc8d79b
commit
ee1d8e1091
34
configure.ac
34
configure.ac
@ -327,8 +327,8 @@ AC_ARG_ENABLE(mpg123,
|
|||||||
|
|
||||||
AC_ARG_ENABLE(openal,
|
AC_ARG_ENABLE(openal,
|
||||||
AS_HELP_STRING([--enable-openal],
|
AS_HELP_STRING([--enable-openal],
|
||||||
[enable OpenAL support (default: disable)]),,
|
[enable OpenAL support (default: auto)]),,
|
||||||
enable_openal=no)
|
enable_openal=auto)
|
||||||
|
|
||||||
AC_ARG_ENABLE(opus,
|
AC_ARG_ENABLE(opus,
|
||||||
AS_HELP_STRING([--enable-opus],
|
AS_HELP_STRING([--enable-opus],
|
||||||
@ -1280,20 +1280,24 @@ dnl ---------------------------------- OpenAL ---------------------------------
|
|||||||
AC_SUBST(OPENAL_CFLAGS,"")
|
AC_SUBST(OPENAL_CFLAGS,"")
|
||||||
AC_SUBST(OPENAL_LIBS,"")
|
AC_SUBST(OPENAL_LIBS,"")
|
||||||
|
|
||||||
if test x$enable_openal = xyes; then
|
if test x$host_is_darwin = xyes; then
|
||||||
if test x$host_is_darwin = xyes; then
|
if test x$enable_openal != xno; then
|
||||||
AC_CHECK_HEADERS([OpenAL/al.h OpenAL/alc.h], [], [enable_openal=no])
|
AC_CHECK_HEADERS([OpenAL/al.h OpenAL/alc.h],
|
||||||
if test x$enable_openal = xyes; then
|
[found_openal=yes], [found_openal=no])
|
||||||
OPENAL_LIBS="-framework OpenAL"
|
|
||||||
AC_DEFINE(HAVE_OPENAL, 1, [Define for OpenAL support])
|
|
||||||
else
|
|
||||||
AC_MSG_WARN(OpenAL headers not found -- disabling OpenAL support)
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
PKG_CHECK_MODULES([OPENAL], [openal],
|
|
||||||
AC_DEFINE(HAVE_OPENAL, 1, [Define for OpenAL support]),
|
|
||||||
enable_openal=no)
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
MPD_AUTO_RESULT(openal, [OpenAL output plugin], [OpenAL not found])
|
||||||
|
|
||||||
|
if test x$enable_openal = xyes; then
|
||||||
|
OPENAL_LIBS="-framework OpenAL"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
MPD_AUTO_PKG(openal, [OPENAL], [openal],
|
||||||
|
[OpenAL output plugin], [OpenAL not found])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test x$enable_openal = xyes; then
|
||||||
|
AC_DEFINE(HAVE_OPENAL, 1, [Define for OpenAL support])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL(HAVE_OPENAL, test x$enable_openal = xyes)
|
AM_CONDITIONAL(HAVE_OPENAL, test x$enable_openal = xyes)
|
||||||
|
Loading…
Reference in New Issue
Block a user