mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
Ooops, back out premature commit
This commit is contained in:
parent
c45a4d2550
commit
26747ed79a
1 changed files with 1 additions and 11 deletions
12
configure.in
12
configure.in
|
@ -744,10 +744,6 @@ AC_ARG_ENABLE(sound,
|
|||
[ --disable-sound disable sound outright],
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(soundmodules,
|
||||
[ --enable-soundmodules enable modular sound drivers],
|
||||
)
|
||||
|
||||
SNDTYPE=""
|
||||
SOUND_LIBS=""
|
||||
SOUND_CFLAGS=""
|
||||
|
@ -868,11 +864,6 @@ QF_maGiC_VALUE
|
|||
SOUND_LIBS="-lwinmm")
|
||||
fi
|
||||
|
||||
if test "x$enable_soundmodules" = "xyes"; then
|
||||
SNDTYPE="modules"
|
||||
SOUND_LIBS=""
|
||||
fi
|
||||
|
||||
if test "x$enable_sound" = "xno"; then
|
||||
SNDTYPE=""
|
||||
SOUND_LIBS=""
|
||||
|
@ -894,8 +885,7 @@ AM_CONDITIONAL(SNDTYPE_SDL, test "$SNDTYPE" = "SDL")
|
|||
AM_CONDITIONAL(SNDTYPE_SGI, test "$SNDTYPE" = "SGI")
|
||||
AM_CONDITIONAL(SNDTYPE_SUN, test "$SNDTYPE" = "SUN")
|
||||
AM_CONDITIONAL(SNDTYPE_WIN32, test "$SNDTYPE" = "WIN32")
|
||||
AM_CONDITIONAL(SNDTYPE_MODULES, test "$SNDTYPE" = "MODULES")
|
||||
AM_CONDITIONAL(SNDTYPE_NULL, test "$SNDTYPE" != "ALSA_0_5" -a "$SNDTYPE" != "ALSA_0_9" -a "$SNDTYPE" != "MME" -a "$SNDTYPE" != "OSS" -a "$SNDTYPE" != "SDL" -a "$SNDTYPE" != "SGI" -a "$SNDTYPE" != "SUN" -a "$SNDTYPE" != "WIN32" -a "$SNDTYPE" != "MODULES")
|
||||
AM_CONDITIONAL(SNDTYPE_NULL, test "$SNDTYPE" != "ALSA_0_5" -a "$SNDTYPE" != "ALSA_0_9" -a "$SNDTYPE" != "MME" -a "$SNDTYPE" != "OSS" -a "$SNDTYPE" != "SDL" -a "$SNDTYPE" != "SGI" -a "$SNDTYPE" != "SUN" -a "$SNDTYPE" != "WIN32")
|
||||
|
||||
dnl Tests for joystick support
|
||||
AC_MSG_CHECKING(for joystick support)
|
||||
|
|
Loading…
Reference in a new issue