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 /configure.ac | |
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
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
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 |