Re: Minor fixes in wget 1.6's main.c

2001-04-04 Thread R.I.P. Deaddog
Ask Philipp Thomas... he has already done that. On Tue, 3 Apr 2001, [iso-8859-1] Nicolás Lichtmaier wrote: The problem is that when using gettext you must set LC_CTYPE (since recent versions of libc). The C library is really lacking in this respect, one should be able to force a

Re: Minor fixes in wget 1.6's main.c

2001-04-04 Thread Philipp Thomas
* Nicols Lichtmaier ([EMAIL PROTECTED]) [20010404 09:07]: That's what 1.7 does. Yup... I guess I'll port that to 1.6. It's easy to do. Here's my patch against the WGET_1.6 branch as of today: src/ChangeLog: 2001-04-04 Philipp Thomas [EMAIL PROTECTED] * safe-ctype.h: New file.

Re: Minor fixes in wget 1.6's main.c

2001-04-04 Thread Nicolás Lichtmaier
That's what 1.7 does. Yup... I guess I'll port that to 1.6. It's easy to do. Here's my patch against the WGET_1.6 branch as of today: Thanks, I'll use this.

Re: Minor fixes in wget 1.6's main.c

2001-04-01 Thread Hrvoje Niksic
Nicols Lichtmaier [EMAIL PROTECTED] writes: New Glibc needs LC_CTYPE in order to work well. The -C option was not being recognized. Thanks for the patch; I've applied the latter to 1.6 and 1.7. Leaving out LC_CTYPE was intentional; setting it has the potential to mess up the ctype macros.

Minor fixes in wget 1.6's main.c

2001-02-27 Thread Nicolás Lichtmaier
New Glibc needs LC_CTYPE in order to work well. The -C option was not being recognized. --- wget-1.6.orig/src/main.c +++ wget-1.6/src/main.c @@ -90,6 +90,7 @@ makes http_atotm() malfunction. */ #ifdef LC_MESSAGES setlocale (LC_MESSAGES, ""); + setlocale (LC_CTYPE, ""); #else