mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
attempt to get the sdl audio lib to compile automatically if SDL is present. Works For Me, Your Mileage May Vary (incredibly).
This commit is contained in:
parent
7f0d8ed7e0
commit
bfbcf8fac2
1 changed files with 3 additions and 6 deletions
|
@ -842,12 +842,9 @@ QF_maGiC_VALUE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl SDL digital audio
|
dnl SDL digital audio
|
||||||
AC_ARG_ENABLE(sdl-audio,
|
if test "x$HAVE_SDL" = "xyes"; then
|
||||||
[ --enable-sdl-audio use SDL for audio output],
|
SOUND_TYPES="$SOUND_TYPES SDL"
|
||||||
if test "x$HAVE_SDL" = "xyes"; then
|
fi
|
||||||
SOUND_TYPES="$SOUND_TYPES SDL"
|
|
||||||
fi
|
|
||||||
)
|
|
||||||
|
|
||||||
dnl SGI
|
dnl SGI
|
||||||
if test "x$ac_cv_header_dmedia_audio_h" = "xyes"; then
|
if test "x$ac_cv_header_dmedia_audio_h" = "xyes"; then
|
||||||
|
|
Loading…
Reference in a new issue