From 55253e168a106fab7767784cd151215e20290f5d Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Thu, 19 Jul 2001 10:27:14 +0000 Subject: Fix two "test: ==: unexpected operator" configure errors on freebsd. Use bourne shell string compare operator. CVS patchset: 309 CVS date: 2001/07/19 10:27:14 --- configure.in | 8 ++++---- 1 file 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 -- cgit v1.2.3