diff options
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index c88fcc8..70c2c15 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -384,7 +384,7 @@ AC_DEFUN([AC_W3M_MIGEMO], AC_MSG_CHECKING(if migemo is supported with) AC_ARG_WITH(migemo, [ --with-migemo=MIGEMO_COMMAND migemo command], - [x$with_migemo = xyes || migemo_command=$with_migemo]) + [test x$with_migemo = xyes || migemo_command="$with_migemo"]) if test "${with_migemo+set}" = set; then AC_DEFINE(USE_MIGEMO) fi @@ -544,7 +544,7 @@ AC_ARG_WITH(ssl, [ --with-ssl=PATH support https protocol],, [with_ssl="no"]) AC_MSG_RESULT($with_ssl) -if test x"${with_ssl+set}" = xset; then +if test "${with_ssl+set}" = set; then AC_DEFINE(USE_SSL) AC_MSG_CHECKING(for SSL library/header) test -d $with_ssl || $with_ssl="/usr/openssl /usr/ssl /usr /usr/local/openssl /usr/local/ssl /usr/local" |