diff options
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index a7a4697eb..a93347880 100644 --- a/configure.in +++ b/configure.in @@ -229,17 +229,17 @@ dnl Alsa support dnl AM_PATH_ALSA(0.5.5, [ AC_DEFINE(HAVE_ALSA) - if test x"$have_alsa05" == "xyes"; then + if test x"$have_alsa05" = "xyes"; then AC_DEFINE(HAVE_ALSA05) fi - if test x"$have_alsa09" == "xyes"; then + if test x"$have_alsa09" = "xyes"; then AC_DEFINE(HAVE_ALSA09) fi ], AC_MSG_RESULT(*** All of ALSA dependent parts will be disabled ***)) AM_CONDITIONAL(HAVE_ALSA, test x"$no_alsa" != "xyes") -AM_CONDITIONAL(HAVE_ALSA05, test x"$have_alsa05" == "xyes") -AM_CONDITIONAL(HAVE_ALSA09, test x"$have_alsa09" == "xyes") +AM_CONDITIONAL(HAVE_ALSA05, test x"$have_alsa05" = "xyes") +AM_CONDITIONAL(HAVE_ALSA09, test x"$have_alsa09" = "xyes") dnl |