summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--configure.ac13
2 files changed, 19 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index dc7ddad8f..f922e8d7e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
120051122 120051125
2 - (dtucker) [configure.ac] Apply tim's fix for older systems where the
3 resolver state in resolv.h is "state" not "__res_state". With slight
4 modification by me to also work on old AIXes. ok djm@
5
620051124
2 - (djm) [configure.ac openbsd-compat/Makefile.in openbsd-compat/bsd-asprintf.c 7 - (djm) [configure.ac openbsd-compat/Makefile.in openbsd-compat/bsd-asprintf.c
3 openbsd-compat/bsd-snprintf.c openbsd-compat/openbsd-compat.h] Add an 8 openbsd-compat/bsd-snprintf.c openbsd-compat/openbsd-compat.h] Add an
4 asprintf() implementation, after syncing our {v,}snprintf() implementation 9 asprintf() implementation, after syncing our {v,}snprintf() implementation
@@ -3344,4 +3349,4 @@
3344 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3349 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3345 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3350 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3346 3351
3347$Id: ChangeLog,v 1.4005 2005/11/24 12:18:54 dtucker Exp $ 3352$Id: ChangeLog,v 1.4006 2005/11/25 02:14:58 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 339c23437..2149f5af6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.309 2005/11/24 11:34:54 dtucker Exp $ 1# $Id: configure.ac,v 1.310 2005/11/25 02:14:58 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -2534,6 +2534,17 @@ OSSH_CHECK_HEADER_FOR_FIELD(ut_time, utmpx.h, HAVE_TIME_IN_UTMPX)
2534OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX) 2534OSSH_CHECK_HEADER_FOR_FIELD(ut_tv, utmpx.h, HAVE_TV_IN_UTMPX)
2535 2535
2536AC_CHECK_MEMBERS([struct stat.st_blksize]) 2536AC_CHECK_MEMBERS([struct stat.st_blksize])
2537AC_CHECK_MEMBER([struct __res_state.retrans], [], [AC_DEFINE(__res_state, state,
2538 [Define if we don't have struct __res_state in resolv.h])],
2539[
2540#include <stdio.h>
2541#if HAVE_SYS_TYPES_H
2542# include <sys/types.h>
2543#endif
2544#include <netinet/in.h>
2545#include <arpa/nameser.h>
2546#include <resolv.h>
2547])
2537 2548
2538AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage], 2549AC_CACHE_CHECK([for ss_family field in struct sockaddr_storage],
2539 ac_cv_have_ss_family_in_struct_ss, [ 2550 ac_cv_have_ss_family_in_struct_ss, [