wget 1.8.2 configuration problem on Solaris 7 with GCC 2.95.3

2003-01-20 Thread Paul Eggert
is a patch only for the simple problem. 2003-01-20 Paul Eggert eggert@whale * src/config.h.in (NAMESPACE_TWEAKS): Remove. (__EXTENSIONS__): Define only for Solaris. (_XOPEN_SOURCE, _SVID_SOURCE, _BSD_SOURCE): Define only for Linux

Re: wget 1.6 problems with FTP globbing through a Squid firewall

2001-05-31 Thread Paul Eggert
From: Hrvoje Niksic [EMAIL PROTECTED] Date: 31 May 2001 11:40:26 +0200 Paul Eggert [EMAIL PROTECTED] writes: I'm using wget 1.6 on Solaris 8 (sparc), and am connected to the Internet via a Squid 2.3.STABLE4 proxy server on a host named 'firewall'. I can access single files OK, but I

wget 1.6 problems with FTP globbing through a Squid firewall

2001-05-30 Thread Paul Eggert
I'm using wget 1.6 on Solaris 8 (sparc), and am connected to the Internet via a Squid 2.3.STABLE4 proxy server on a host named 'firewall'. I can access single files OK, but I can't use FTP globbing. Looking at the code, I don't see a trivial fix. If you don't see a fix either, perhaps the

wget 1.6 inconveniences with FTP access through a FWTK firewall

2001-05-30 Thread Paul Eggert
I'm using wget 1.6 on Solaris 8 (sparc), and am connected to the Internet via a FWTK FTP proxy http://www.fwtk.org/main.html. If I want to retrieve a file via the standard Solaris 'ftp' command, without using 'wget', I do something like this: $ ftp firewall Connected to

wget 1.6 porting problem with snprintf and isdigit on Solaris 2.5.1

2001-04-08 Thread Paul Eggert
characters (which are possible on hosts where characters are signed). Here is a patch. 2001-04-07 Paul Eggert [EMAIL PROTECTED] * snprintf.c (is_digit): New macro. (dopr): Use it instead of isdigit, to avoid problems with negative characters and pacify GCC

Re: wget 1.6 porting problem with snprintf and isdigit on Solaris 2.5.1

2001-04-08 Thread Paul Eggert
Date: Sun, 8 Apr 2001 12:05:35 +0200 From: Jan Prikryl [EMAIL PROTECTED] Wouldn't just an explicit type cast to `(unsigned char)ch' suffice? That would work for now, but it won't work if wget got properly internationalized. That is because isdigit(x) succeeds for non-ASCII digits in some

Re: wget 1.6 porting problem with snprintf and isdigit on Solaris 2.5.1

2001-04-08 Thread Paul Eggert
From: Hrvoje Niksic [EMAIL PROTECTED] Date: 08 Apr 2001 23:06:32 +0200 In the general case (other is* macros), such hacked-up code is probably slower than table lookups. For the special case of isdigit, '0'=x x='9' is usually faster than table lookups. Decent compilers like GCC optimize