+1388. [port] irix: check for sys/sysctl.h and NET_RT_IFLIST before
+ defining HAVE_IFLIST_SYSCTL. [RT #3770]
+
1387. [bug] named could crash due to an access to invalid memory
space (which caused an assertion failure) in
incremental cleaning. [RT #3588]
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: acconfig.h,v 1.37 2002/06/07 00:03:46 marka Exp $ */
+/* $Id: acconfig.h,v 1.38 2002/10/15 04:32:49 marka Exp $ */
/***
*** This file is not to be included by any public header files, because
/* define if catgets() is available */
#undef HAVE_CATGETS
-/* define if you have the NET_RT_IFLIST sysctl variable. */
+/* define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */
#undef HAVE_IFLIST_SYSCTL
/* define if you need to #define _XPG4_2 before including sys/socket.h */
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
-AC_REVISION($Revision: 1.330 $)
+AC_REVISION($Revision: 1.331 $)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13)
#
# Look for a sysctl call to get the list of network interfaces.
#
+case $ac_cv_header_sys_sysctl_h in
+yes)
AC_MSG_CHECKING(for interface list sysctl)
AC_EGREP_CPP(found_rt_iflist, [
#include <sys/param.h>
[AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_IFLIST_SYSCTL)],
[AC_MSG_RESULT(no)])
+;;
+esac
#
# Check for some other useful functions that are not ever-present.