summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac10
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 339568ddd..cdbf5d737 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -271,6 +271,7 @@
271 - (djm) [includes.h] Put back paths.h, it is needed in defines.h 271 - (djm) [includes.h] Put back paths.h, it is needed in defines.h
272 - (dtucker) [openbsd-compat/openbsd-compat.h] AIX (at least) needs 272 - (dtucker) [openbsd-compat/openbsd-compat.h] AIX (at least) needs
273 sys/ioctl.h for struct winsize. 273 sys/ioctl.h for struct winsize.
274 - (dtucker) [configure.ac] login_cap.h requires sys/types.h on NetBSD.
274 275
27520060313 27620060313
276 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) 277 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4172,4 +4173,4 @@
4172 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4173 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4173 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4174 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4174 4175
4175$Id: ChangeLog,v 1.4223 2006/03/15 11:25:54 dtucker Exp $ 4176$Id: ChangeLog,v 1.4224 2006/03/15 11:28:17 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 72577a728..f8faa2660 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.336 2006/03/15 10:31:39 dtucker Exp $ 1# $Id: configure.ac,v 1.337 2006/03/15 11:28:17 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.336 $) 18AC_REVISION($Revision: 1.337 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -679,7 +679,6 @@ AC_CHECK_HEADERS( \
679 iaf.h \ 679 iaf.h \
680 limits.h \ 680 limits.h \
681 login.h \ 681 login.h \
682 login_cap.h \
683 maillock.h \ 682 maillock.h \
684 ndir.h \ 683 ndir.h \
685 netdb.h \ 684 netdb.h \
@@ -740,6 +739,11 @@ AC_CHECK_HEADERS(sys/ptms.h, [], [], [
740#endif 739#endif
741]) 740])
742 741
742# login_cap.h requires sys/types.h on NetBSD
743AC_CHECK_HEADERS(login_cap.h, [], [], [
744#include <sys/types.h>
745])
746
743# Checks for libraries. 747# Checks for libraries.
744AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match)) 748AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
745AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt)) 749AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))