mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Declare h_errno if no declaration provided (HP-UX).
This commit is contained in:
parent
30385d6c5d
commit
e265ef9242
@ -1,3 +1,8 @@
|
|||||||
|
2009-06-12 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* configure.ac: Check for h_errno declaration. Idea thanks to
|
||||||
|
Maciej W. Rozycki.
|
||||||
|
|
||||||
2009-03-03 Steven Schubiger <stsc@member.fsf.org>
|
2009-03-03 Steven Schubiger <stsc@member.fsf.org>
|
||||||
|
|
||||||
* src/ftp.c, src/http.c, src/main.c, src/recur.h,
|
* src/ftp.c, src/http.c, src/main.c, src/recur.h,
|
||||||
|
@ -163,6 +163,8 @@ AC_CHECK_HEADERS(unistd.h sys/time.h)
|
|||||||
AC_CHECK_HEADERS(termios.h sys/ioctl.h sys/select.h utime.h sys/utime.h)
|
AC_CHECK_HEADERS(termios.h sys/ioctl.h sys/select.h utime.h sys/utime.h)
|
||||||
AC_CHECK_HEADERS(stdint.h inttypes.h pwd.h wchar.h)
|
AC_CHECK_HEADERS(stdint.h inttypes.h pwd.h wchar.h)
|
||||||
|
|
||||||
|
AC_CHECK_DECLS(h_errno,,,[#include <netdb.h>])
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl Check sizes of integer types. These are used to find n-bit
|
dnl Check sizes of integer types. These are used to find n-bit
|
||||||
dnl integral types on older systems that fail to provide intN_t and
|
dnl integral types on older systems that fail to provide intN_t and
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2009-06-12 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* host.c: Declare h_errno if no declaration is provided. Idea
|
||||||
|
thanks to Maciej W. Rozycki.
|
||||||
|
|
||||||
2009-06-11 Xin Zou <zouxin2008@gmail.com>
|
2009-06-11 Xin Zou <zouxin2008@gmail.com>
|
||||||
|
|
||||||
* http.c (gethttp): Fix some memory leaks.
|
* http.c (gethttp): Fix some memory leaks.
|
||||||
|
@ -58,6 +58,11 @@ as that of the covered work. */
|
|||||||
# define NO_ADDRESS NO_DATA
|
# define NO_ADDRESS NO_DATA
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if !HAVE_DECL_H_ERRNO
|
||||||
|
extern int h_errno;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Lists of IP addresses that result from running DNS queries. See
|
/* Lists of IP addresses that result from running DNS queries. See
|
||||||
lookup_host for details. */
|
lookup_host for details. */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user