From 828616c3d79dbd31a0a12c58b4568a17418eedbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Miguel=20S=C3=A1nchez=20Garc=C3=ADa?= Date: Sat, 27 Jan 2018 17:46:34 +0000 Subject: [PATCH] Fix equality in `test` command inside configure.ac --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 8ba3e19..9e074f7 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ deps_packages="fftw3f" # ALSA AC_ARG_WITH([alsa], [AS_HELP_STRING([--without-alsa], [build without ALSA support])]) -AS_IF([test "x$with_alsa" == "xno"], [ +AS_IF([test "x$with_alsa" = "xno"], [ use_alsa=0 ], [ use_alsa=1 @@ -30,7 +30,7 @@ AC_DEFINE_UNQUOTED([USE_ALSA], [$use_alsa], # pulseaudio AC_ARG_WITH([pulseaudio], AS_HELP_STRING([--without-pulseaudio], [build without pulseaudio support])) -AS_IF([test "x$with_pulseaudio" == "xno"], [ +AS_IF([test "x$with_pulseaudio" = "xno"], [ use_pulseaudio=0 ], [ use_pulseaudio=1 @@ -42,7 +42,7 @@ AC_DEFINE_UNQUOTED([USE_PULSEAUDIO], [$use_pulseaudio], # sndfile AC_ARG_WITH([sndfile], AS_HELP_STRING([--without-sndfile], [build without sndfile support])) -AS_IF([test "x$with_sndfile" == "xno"], [ +AS_IF([test "x$with_sndfile" = "xno"], [ use_sndfile=0 ], [ use_sndfile=1 @@ -54,7 +54,7 @@ AC_DEFINE_UNQUOTED([USE_SNDFILE], [$use_sndfile], # benchmarks AC_ARG_WITH([benchmarks], AS_HELP_STRING([--disable-benchmarks], [build without internal benchmarks])) -AS_IF([test "x$with_benchmarks" == "xno"], [ +AS_IF([test "x$with_benchmarks" = "xno"], [ use_benchmarks=0 ], [ use_benchmarks=1