configure: Correctly detect OpenAL.
Older OpenAL alext.h doesn't include al.h/alc.h. Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
be78f79eda
commit
8454e23529
|
@ -13694,6 +13694,8 @@ if ${ac_cv_have_openalsoft+:} false; then :
|
|||
else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <AL/al.h>
|
||||
#include <AL/alc.h>
|
||||
#include <AL/alext.h>
|
||||
LPALCRENDERSAMPLESSOFT x;
|
||||
int
|
||||
|
|
|
@ -1650,7 +1650,9 @@ if test "x$ac_cv_lib_openal" = xyes
|
|||
then
|
||||
AC_CACHE_CHECK([for openal-soft], ac_cv_have_openalsoft,
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
|
||||
[[#include <AL/alext.h>
|
||||
[[#include <AL/al.h>
|
||||
#include <AL/alc.h>
|
||||
#include <AL/alext.h>
|
||||
LPALCRENDERSAMPLESSOFT x;]])],[ac_cv_have_openalsoft=yes],[ac_cv_have_openalsoft=no]))
|
||||
fi
|
||||
if test "x$ac_cv_have_openalsoft" != xyes
|
||||
|
|
Loading…
Reference in New Issue