diff options
author | Dai Sato <satodai@w3m.jp> | 2006-04-08 11:15:57 +0000 |
---|---|---|
committer | Dai Sato <satodai@w3m.jp> | 2006-04-08 11:15:57 +0000 |
commit | ac67ffe1a2ab2535015135d4031a27b97f54de15 (patch) | |
tree | e58252936aa3fcb4790593d9aaf6eb2f7a824324 | |
parent | Introduce option show_cookie and set it TRUE by default. (diff) | |
download | w3m-ac67ffe1a2ab2535015135d4031a27b97f54de15.tar.gz w3m-ac67ffe1a2ab2535015135d4031a27b97f54de15.zip |
[w3m-dev 04146] disable HAVE_LANGINFO_CODESET on cygwin
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 13 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2006-04-07 Dai Sato <satodai@w3m.jp> + * [w3m-dev 04146] disable HAVE_LANGINFO_CODESET on cygwin + * configure.ac: avoid AM_LANGINFO_CODESET check for Cygwin. + +2006-04-07 Dai Sato <satodai@w3m.jp> + * [w3m-dev-en 01060] Some patches * file.c, fm.h, rc.c: Introduce option show_cookie and set it TRUE by default. If set to FALSE received cookies will not be shown. * This fixes Debian bug #253547: w3m: Too slow receiving cookies. @@ -8683,4 +8688,4 @@ a * [w3m-dev 03276] compile error on EWS4800 * release-0-2-1 * import w3m-0.2.1 -$Id: ChangeLog,v 1.955 2006/04/07 15:48:56 inu Exp $ +$Id: ChangeLog,v 1.956 2006/04/08 11:15:57 inu Exp $ diff --git a/configure.ac b/configure.ac index 9277a94..586989e 100644 --- a/configure.ac +++ b/configure.ac @@ -148,7 +148,13 @@ AC_CHECK_FUNCS(strcasecmp strcasestr strchr memcpy strerror bcopy setpgrp chdir AC_FUNC_STRFTIME AC_FUNC_WAIT3 AC_FUNC_SETPGRP -AM_LANGINFO_CODESET +case "$host_os" in + *cygwin*) + ;; + *) + AM_LANGINFO_CODESET + ;; +esac AC_W3M_SYS_ERRLIST AC_W3M_SIGSETJMP AC_W3M_SIGNAL |