])
AC_MSG_RESULT([$have_htoll])
- AM_CONDITIONAL([BUILD_BYTEORDER],[test "x$have_htoll" == "xno"])
+ AM_CONDITIONAL([BUILD_BYTEORDER],[test "x$have_htoll" = "xno"])
AC_MSG_CHECKING([byteorder])
have_htoll="no"
AC_RUN_IFELSE([
MEMC_BINARY="$withval"
fi
- if test x$withval == xyes
+ if test x$withval = xyes
then
MEMC_BINARY=memcached
fi
# just ignore the user if --without-memcached is passed.. it is
# only used by make test
- if test x$withval == xno
+ if test x$withval = xno
then
MEMC_BINARY=memcached
fi
AC_PATH_PROG([MEMC_BINARY], [memcached], "no", [$PATH])
])
-if test x$MEMC_BINARY == "xno"
+if test x$MEMC_BINARY = "xno"
then
AC_MSG_ERROR(["could not find memcached binary"])
fi
AC_PATH_PROG([POD2MAN], [pod2man], "no", [$PATH:/usr/bin:/usr/local/bin:/usr/perl5/bin])
-if test "x$POD2MAN" == "xno"; then
+if test "x$POD2MAN" = "xno"; then
AC_MSG_ERROR(["Could not find pod2man anywhere in path"])
fi
AC_SUBST(POD2MAN)