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:
parent
e8905e2e87
commit
e979053779
@ -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 '-'.
|
||||
|
@ -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. */
|
||||
|
@ -73,7 +73,9 @@ extern char *version_string;
|
||||
extern int errno;
|
||||
#endif
|
||||
#ifndef h_errno
|
||||
# ifndef __CYGWIN__
|
||||
extern int h_errno;
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user