From: dan Date: Sun, 31 Dec 2000 12:04:14 +0000 (-0800) Subject: [svn] 2000-12-31 Dan Harkless X-Git-Tag: v1.13~2316 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=e9790537794813de4e8660bfc9297e92baea5e8a [svn] 2000-12-31 Dan Harkless * ftp.c, http.c: Applied Hack Kampbj?rn 's patch to deal with h_errno not being defined in netdb.h under Cygwin. 2000-12-30 Dan Harkless * version.c: Released Wget version 1.6. Note that on this branch we never actually had the version set to 1.6, but we still need the ChangeLog comment for posterity. --- diff --git a/src/ChangeLog b/src/ChangeLog index 739129cc..ce2a26ba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,12 @@ +2000-12-31 Dan Harkless + + * ftp.c, http.c: Applied Hack Kampbjørn 's + patch to deal with h_errno not being defined in netdb.h under Cygwin. + +2000-12-30 Dan Harkless + + * version.c: Released Wget version 1.6. + 2000-12-17 Igor Khristophorov * http.c (check_end): Fix test for '+' or '-'. diff --git a/src/ftp.c b/src/ftp.c index e28f4596..d38ed012 100644 --- a/src/ftp.c +++ b/src/ftp.c @@ -52,7 +52,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ extern int errno; #endif #ifndef h_errno +# ifndef __CYGWIN__ extern int h_errno; +# endif #endif /* File where the "ls -al" listing will be saved. */ diff --git a/src/http.c b/src/http.c index 39856467..0d81a30d 100644 --- a/src/http.c +++ b/src/http.c @@ -73,7 +73,9 @@ extern char *version_string; extern int errno; #endif #ifndef h_errno +# ifndef __CYGWIN__ extern int h_errno; +# endif #endif