summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2006-02-04 17:34:55 -0800
committerTim Rice <tim@multitalents.net>2006-02-04 17:34:55 -0800
commitbde717b825beca3b819a17cb813dec44a293a353 (patch)
treefa7db8820fd6951f9e8045f82a5995b8178466f9 /configure.ac
parente9d6269fc51cf153cdca40cc82c5ec188df74c17 (diff)
- (tim) [configure.ac] Add AC_REVISION. Add sys/time.h to lastlog.h test
for Solaris. OK dtucker@.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 9 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 20b15c622..f1cf15e8c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.322.2.2 2006/02/03 03:16:11 tim Exp $ 1# $Id: configure.ac,v 1.322.2.3 2006/02/05 01:34:55 tim Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,6 +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.322.2.3 $)
18AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
19 20
20AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -673,7 +674,6 @@ AC_CHECK_HEADERS( \
673 glob.h \ 674 glob.h \
674 ia.h \ 675 ia.h \
675 iaf.h \ 676 iaf.h \
676 lastlog.h \
677 limits.h \ 677 limits.h \
678 login.h \ 678 login.h \
679 login_cap.h \ 679 login_cap.h \
@@ -724,6 +724,13 @@ AC_CHECK_HEADERS( \
724 vis.h \ 724 vis.h \
725) 725)
726 726
727# lastlog.h requires sys/time.h to be included first on Solaris
728AC_CHECK_HEADERS(lastlog.h, [], [], [
729#ifdef HAVE_SYS_TIME_H
730# include <sys/time.h>
731#endif
732])
733
727# sys/ptms.h requires sys/stream.h to be included first on Solaris 734# sys/ptms.h requires sys/stream.h to be included first on Solaris
728AC_CHECK_HEADERS(sys/ptms.h, [], [], [ 735AC_CHECK_HEADERS(sys/ptms.h, [], [], [
729#ifdef HAVE_SYS_STREAM_H 736#ifdef HAVE_SYS_STREAM_H