[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>
This commit is contained in:
Fumitoshi UKAI
2003-03-10 16:10:55 +00:00
parent 1f81aa84fe
commit eb92601846
4 changed files with 14 additions and 7 deletions

View File

@@ -1,3 +1,10 @@
2003-03-11 Yuji Abe <cbo46560@pop12.odn.ne.jp>
* [w3m-dev 03803] fix autoconf
* acinclude.m4 (AC_W3M_MIGEMO): add missing test
needs quote
(AC_W3M_SSL): delete x
2003-03-11 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp> 2003-03-11 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 03802] fix autoconf * [w3m-dev 03802] fix autoconf
@@ -7374,4 +7381,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1 * release-0-2-1
* import w3m-0.2.1 * import w3m-0.2.1
$Id: ChangeLog,v 1.777 2003/03/10 16:07:33 ukai Exp $ $Id: ChangeLog,v 1.778 2003/03/10 16:10:55 ukai Exp $

View File

@@ -384,7 +384,7 @@ AC_DEFUN([AC_W3M_MIGEMO],
AC_MSG_CHECKING(if migemo is supported with) AC_MSG_CHECKING(if migemo is supported with)
AC_ARG_WITH(migemo, AC_ARG_WITH(migemo,
[ --with-migemo=MIGEMO_COMMAND migemo command], [ --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 if test "${with_migemo+set}" = set; then
AC_DEFINE(USE_MIGEMO) AC_DEFINE(USE_MIGEMO)
fi fi
@@ -544,7 +544,7 @@ AC_ARG_WITH(ssl,
[ --with-ssl=PATH support https protocol],, [ --with-ssl=PATH support https protocol],,
[with_ssl="no"]) [with_ssl="no"])
AC_MSG_RESULT($with_ssl) 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_DEFINE(USE_SSL)
AC_MSG_CHECKING(for SSL library/header) 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" test -d $with_ssl || $with_ssl="/usr/openssl /usr/ssl /usr /usr/local/openssl /usr/local/ssl /usr/local"

4
aclocal.m4 vendored
View File

@@ -396,7 +396,7 @@ AC_DEFUN([AC_W3M_MIGEMO],
AC_MSG_CHECKING(if migemo is supported with) AC_MSG_CHECKING(if migemo is supported with)
AC_ARG_WITH(migemo, AC_ARG_WITH(migemo,
[ --with-migemo=MIGEMO_COMMAND migemo command], [ --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 if test "${with_migemo+set}" = set; then
AC_DEFINE(USE_MIGEMO) AC_DEFINE(USE_MIGEMO)
fi fi
@@ -556,7 +556,7 @@ AC_ARG_WITH(ssl,
[ --with-ssl=PATH support https protocol],, [ --with-ssl=PATH support https protocol],,
[with_ssl="no"]) [with_ssl="no"])
AC_MSG_RESULT($with_ssl) 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_DEFINE(USE_SSL)
AC_MSG_CHECKING(for SSL library/header) 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" test -d $with_ssl || $with_ssl="/usr/openssl /usr/ssl /usr /usr/local/openssl /usr/local/ssl /usr/local"

4
configure vendored
View File

@@ -1428,7 +1428,7 @@ echo "configure:1428: checking if migemo is supported with" >&5
# Check whether --with-migemo or --without-migemo was given. # Check whether --with-migemo or --without-migemo was given.
if test "${with_migemo+set}" = set; then if test "${with_migemo+set}" = set; then
withval="$with_migemo" withval="$with_migemo"
x$with_migemo = xyes || migemo_command=$with_migemo test x$with_migemo = xyes || migemo_command="$with_migemo"
fi fi
if test "${with_migemo+set}" = set; then if test "${with_migemo+set}" = set; then
@@ -2856,7 +2856,7 @@ else
fi fi
echo "$ac_t""$with_ssl" 1>&6 echo "$ac_t""$with_ssl" 1>&6
if test x"${with_ssl+set}" = xset; then if test "${with_ssl+set}" = set; then
cat >> confdefs.h <<\EOF cat >> confdefs.h <<\EOF
#define USE_SSL 1 #define USE_SSL 1
EOF EOF