diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-07-19 10:27:14 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-07-19 10:27:14 +0000 |
commit | 55253e168a106fab7767784cd151215e20290f5d (patch) | |
tree | 46f610251aa4fc7d498726ada01baf1211d0b009 | |
parent | a785a3e404bdba9e901431cf9d2e047e8d4b4c1a (diff) | |
download | xine-lib-55253e168a106fab7767784cd151215e20290f5d.tar.gz xine-lib-55253e168a106fab7767784cd151215e20290f5d.tar.bz2 |
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
-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 |