mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-12-03 17:42:40 +00:00
Test for sys/shm.h for OSS sound.
Android does not supply sys/shm.h (or related headers, by design), so OSS sound is completely out of the question on Android.
This commit is contained in:
parent
d2a6da6c24
commit
abcd3091d0
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ AC_SUBST(MME_LIBS)
|
|||
|
||||
dnl OSS
|
||||
HAVE_OSS=no
|
||||
if test "x$enable_oss" != "xno"; then
|
||||
if test "x$enable_oss" != "xno" -a "x$ac_cv_header_sys_shm_h" = "xyes"; then
|
||||
if test "x$ac_cv_header_sys_soundcard_h" = "xyes" -o \
|
||||
"x$ac_cv_header_machine_soundcard_h" = "xyes" -o \
|
||||
"x$ac_cv_header_linux_soundcard_h" = "xyes"; then
|
||||
|
|
Loading…
Reference in a new issue