diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-10 16:10:55 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-10 16:10:55 +0000 |
commit | eb92601846c8b2540ebb5021e2e897578279204b (patch) | |
tree | 768ab4714aca0b12ddb36e9707ee50b697ed61a4 /aclocal.m4 | |
parent | [w3m-dev 03802] fix autoconf (diff) | |
download | w3m-eb92601846c8b2540ebb5021e2e897578279204b.tar.gz w3m-eb92601846c8b2540ebb5021e2e897578279204b.zip |
[w3m-dev 03803] fix autoconf
* acinclude.m4 (AC_W3M_MIGEMO): add missing test
needs quote
(AC_W3M_SSL): delete x
From: Yuji Abe <cbo46560@pop12.odn.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | aclocal.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -396,7 +396,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 @@ -556,7 +556,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" |