+2004-09-15 Tom Yu <tlyu@mit.edu>
+
+ * configure.in: Check for h_errno declaration in netdb.h.
+
+ * port-sockets.h: Explicitly declare h_errno if it's missing.
+
2004-09-10 Tom Yu <tlyu@mit.edu>
* port-sockets.h: Remove _XOPEN_SOURCE_EXTENDED hack for netdb.h,
fi
dnl
dnl
+AC_MSG_CHECKING([for h_errno in netdb.h])
+AC_CACHE_VAL(krb5_cv_header_netdb_h_h_errno,
+[AC_TRY_COMPILE(
+ [#include <netdb.h>],
+ [int x = h_errno;], krb5_cv_header_netdb_h_h_errno=yes,
+ krb5_cv_header_netdb_h_h_errno=no)])
+AC_MSG_RESULT($krb5_cv_header_netdb_h_h_errno)
+if test $krb5_cv_header_netdb_h_h_errno = yes; then
+ AC_DEFINE([HAVE_NETDB_H_H_ERRNO], 1,
+ [Define if netdb.h declares h_errno])
+fi
+dnl
+dnl
KRB5_AC_NEED_BIND_8_COMPAT
dnl
dnl
#include <arpa/inet.h> /* For inet_ntoa */
#include <netdb.h>
+#ifndef HAVE_NETDB_H_H_ERRNO
+extern int h_errno; /* In case it's missing, e.g., HP-UX 10.20. */
+#endif
+
#include <sys/param.h> /* For MAXHOSTNAMELEN */
#include <sys/socket.h> /* For SOCK_*, AF_*, etc */
#include <sys/time.h> /* For struct timeval */