diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-18 15:25:47 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-03-18 15:25:47 +0000 |
commit | 32d3057edddf04a606d787093d4acb07e01de6cd (patch) | |
tree | 9c1f5df66de79842232abe006e266d0c5713e88b /aclocal.m4 | |
parent | fix typo (diff) | |
download | w3m-32d3057edddf04a606d787093d4acb07e01de6cd.tar.gz w3m-32d3057edddf04a606d787093d4acb07e01de6cd.zip |
[w3m-dev-en 00908] Re: autoconf: --without-migemo is a nop
* acinclude.m4 (AC_W3M_MIGEMO): dont define USE_MIGEMO
when with_migemo=no
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,7 +236,7 @@ AC_DEFUN([AC_W3M_MIGEMO], AC_ARG_WITH(migemo, [ --with-migemo=MIGEMO_COMMAND migemo command], [test x"$with_migemo" = xyes || migemo_command="$with_migemo"]) - if test "${with_migemo+set}" = set; then + if test "${with_migemo+set}" = set -a "$with_migemo" != "no"; then AC_DEFINE(USE_MIGEMO) fi AC_MSG_RESULT($migemo_command) |