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>
|
2000-12-17 Igor Khristophorov <igor@atdot.org>
|
||||||
|
|
||||||
* http.c (check_end): Fix test for '+' or '-'.
|
* http.c (check_end): Fix test for '+' or '-'.
|
||||||
|
@ -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"
|
||||||
|
@ -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"
|
||||||
|
Loading…
Reference in New Issue
Block a user