1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] 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.  Note that on this branch we
        never actually had the version set to 1.6, but we still need the
        ChangeLog comment for posterity.
This commit is contained in:
dan 2000-12-31 04:04:14 -08:00
parent e8905e2e87
commit e979053779
3 changed files with 13 additions and 0 deletions

View 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> 2000-12-17 Igor Khristophorov <igor@atdot.org>
* http.c (check_end): Fix test for '+' or '-'. * http.c (check_end): Fix test for '+' or '-'.

View File

@ -52,8 +52,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
extern int errno; extern int errno;
#endif #endif
#ifndef h_errno #ifndef h_errno
# ifndef __CYGWIN__
extern int h_errno; extern int h_errno;
# endif # endif
#endif
/* File where the "ls -al" listing will be saved. */ /* File where the "ls -al" listing will be saved. */
#define LIST_FILENAME ".listing" #define LIST_FILENAME ".listing"

View File

@ -73,8 +73,10 @@ extern char *version_string;
extern int errno; extern int errno;
#endif #endif
#ifndef h_errno #ifndef h_errno
# ifndef __CYGWIN__
extern int h_errno; extern int h_errno;
# endif # endif
#endif
#define TEXTHTML_S "text/html" #define TEXTHTML_S "text/html"