commit be6bc80f9f0ae31972d7c7af8978fb418e134b0c
parent 3f79023e4744d86c5faf14a194208dfb4ceff3be
Author: inu <inu>
Date:   Sat,  8 Apr 2006 11:15:57 +0000
[w3m-dev 04146] disable HAVE_LANGINFO_CODESET on cygwin
Diffstat:
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -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.
diff --git 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