diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-05-25 23:15:25 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-05-25 23:15:25 +0100 |
commit | 3da8e08c83e25577c47b0117155b3c36198e0277 (patch) | |
tree | 3e33da5d291b7acb1ba9a1916d33f480283c2afc | |
parent | dc5f21667ff8329464c76a9bdbf016d309a712f6 (diff) | |
download | xine-lib-3da8e08c83e25577c47b0117155b3c36198e0277.tar.gz xine-lib-3da8e08c83e25577c47b0117155b3c36198e0277.tar.bz2 |
Fix "test x == y" bashisms in configure.ac.
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index c678d85b2..66a11b8e0 100644 --- a/configure.ac +++ b/configure.ac @@ -109,7 +109,7 @@ dnl --------------------------------------------- AC_CANONICAL_HOST AC_CANONICAL_BUILD -test "$host" == "$build" && check_athlon=yes +test "$host" = "$build" && check_athlon=yes AC_CONFIG_HEADERS([include/configure.h]) @@ -792,7 +792,7 @@ XXMC_LIBS="${xxmc_path:+-L}$xxmc_path -l$xxmc_stub" AC_MSG_CHECKING(whether to enable the xxmc plugin with vld extensions) AC_MSG_RESULT() dnl Check if vld "extended" XvMC is available -if test "x$xxmc_stub" == "xXvMCW" && test "x$ac_have_xv" == "xyes"; then +if test "x$xxmc_stub" = "xXvMCW" && test "x$ac_have_xv" = "xyes"; then AC_CHECK_LIB($xxmc_stub, XvMCPutSlice, ac_have_xxmc="yes", [ac_have_xxmc="no" @@ -822,7 +822,7 @@ if test "x$ac_have_xxmc" = "xyes"; then fi dnl Try fallback to standard XvMC if vld failed if test "x$ac_have_xxmc" = "xno"; then - if test "x$xxmc_stub" == "xXvMCW"; then + if test "x$xxmc_stub" = "xXvMCW"; then AC_CHECK_LIB($xxmc_stub, XvMCCreateContext, ac_have_xxmc="yes", [ac_have_xxmc="no" @@ -876,7 +876,7 @@ saved_libs="$LIBS" XVMC_LIBS="${xvmc_path:+-L}$xvmc_path -l$xvmc_stub" AC_MSG_CHECKING(whether to enable the xvmc plugin) AC_MSG_RESULT() -if test "x$xvmc_stub" == "xXvMCW"; then +if test "x$xvmc_stub" = "xXvMCW"; then AC_CHECK_LIB($xvmc_stub, XvMCCreateContext, ac_have_xvmc="yes", [ac_have_xvmc="no" |