]> sjero.net Git - wget/commitdiff
[svn] 2000-12-31 Dan Harkless <wget@harkless.org>
authordan <devnull@localhost>
Sun, 31 Dec 2000 12:04:14 +0000 (04:04 -0800)
committerdan <devnull@localhost>
Sun, 31 Dec 2000 12:04:14 +0000 (04:04 -0800)
        * ftp.c, http.c:  Applied Hack Kampbj?rn <hack@hackdata.com>'s
        patch to deal with h_errno not being defined in netdb.h under Cygwin.

2000-12-30  Dan Harkless  <wget@harkless.org>

        * 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.

src/ChangeLog
src/ftp.c
src/http.c

index 739129ccef19ea0640ad9534048c7d53ff10d418..ce2a26bab10e0b98fd01696aee81e70d0ac12fcf 100644 (file)
@@ -1,3 +1,12 @@
+2000-12-31  Dan Harkless  <wget@harkless.org>
+
+        * ftp.c, http.c:  Applied Hack Kampbjørn <hack@hackdata.com>'s
+        patch to deal with h_errno not being defined in netdb.h under Cygwin.
+
+2000-12-30  Dan Harkless  <wget@harkless.org>
+
+        * version.c: Released Wget version 1.6.
+
 2000-12-17  Igor Khristophorov  <igor@atdot.org>
 
        * http.c (check_end): Fix test for '+' or '-'.
index e28f4596299e903c21e5c80e4de778c211d8f324..d38ed012cb4b39b5db47300bc81afa09e45130b9 100644 (file)
--- 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.  */
index 398564677830f6ab2f861b6f9c662e50648641d4..0d81a30d1afe2c09f178e06043141e12b6a45c30 100644 (file)
@@ -73,7 +73,9 @@ extern char *version_string;
 extern int errno;
 #endif
 #ifndef h_errno
+# ifndef __CYGWIN__
 extern int h_errno;
+# endif
 #endif
 \f