mirror of https://github.com/odrling/Aegisub
PulseAudio and OpenAL were being forced on due to typos, also add some
quotes for cleanliness. Originally committed to SVN as r1905.
This commit is contained in:
parent
896cfc112b
commit
850a280ef1
|
@ -134,7 +134,7 @@ AC_ARG_WITH(alsa, [ --without-alsa build without ALSA audio provider.
|
||||||
if test "x$with_alsa" != xno; then
|
if test "x$with_alsa" != xno; then
|
||||||
AC_CHECK_LIB([asound], [snd_pcm_open], [ALSA_LDFLAGS="-lasound"; found_audio=yes; with_alsa=yes], [with_alsa=no])
|
AC_CHECK_LIB([asound], [snd_pcm_open], [ALSA_LDFLAGS="-lasound"; found_audio=yes; with_alsa=yes], [with_alsa=no])
|
||||||
fi
|
fi
|
||||||
if test "$with_alsa" = yes; then
|
if test "$with_alsa" = "yes"; then
|
||||||
AC_DEFINE(WITH_ALSA, 1, [Enable ALSA Support])
|
AC_DEFINE(WITH_ALSA, 1, [Enable ALSA Support])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -158,7 +158,7 @@ if test "x$with_portaudio" != xno; then
|
||||||
CPPFLAGS="$aegisub_save_CPPFLAGS"
|
CPPFLAGS="$aegisub_save_CPPFLAGS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$with_portaudio" = yes; then
|
if test "$with_portaudio" = "yes"; then
|
||||||
AC_DEFINE(WITH_PORTAUDIO, 1, [Enable PortAudio Audio Provider])
|
AC_DEFINE(WITH_PORTAUDIO, 1, [Enable PortAudio Audio Provider])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -171,7 +171,7 @@ if test "x$with_pulseaudio" != xno; then
|
||||||
PKG_CHECK_MODULES(LIBPULSE, libpulse >= 0.5, [found_audio=yes; with_pulseaudio=yes], [with_pulseaudio=no])
|
PKG_CHECK_MODULES(LIBPULSE, libpulse >= 0.5, [found_audio=yes; with_pulseaudio=yes], [with_pulseaudio=no])
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL([HAVE_PULSEAUDIO], [test "$with_pulseaudio" != "no"])
|
AM_CONDITIONAL([HAVE_PULSEAUDIO], [test "$with_pulseaudio" != "no"])
|
||||||
if test "$with_pulseaudio" == no; then
|
if test "$with_pulseaudio" = "yes"; then
|
||||||
AC_DEFINE(WITH_PULSEAUDIO, 1, [Enable PulseAudio support])
|
AC_DEFINE(WITH_PULSEAUDIO, 1, [Enable PulseAudio support])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ if test "x$with_openal" != xno; then
|
||||||
PKG_CHECK_MODULES(OPENAL, libpulse >= 0.0.8, [found_audio=yes; with_openal=yes], [with_openal=no])
|
PKG_CHECK_MODULES(OPENAL, libpulse >= 0.0.8, [found_audio=yes; with_openal=yes], [with_openal=no])
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL([HAVE_OPENAL], [test "$with_openal" != "no"])
|
AM_CONDITIONAL([HAVE_OPENAL], [test "$with_openal" != "no"])
|
||||||
if test "$with_openal" == no; then
|
if test "$with_openal" = "yes"; then
|
||||||
AC_DEFINE(WITH_OPENAL, 1, [Enable OpenAL support])
|
AC_DEFINE(WITH_OPENAL, 1, [Enable OpenAL support])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue