summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
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 fe034aca6..d64daf219 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.324 2006/02/03 03:11:56 tim Exp $ 1# $Id: configure.ac,v 1.325 2006/02/05 01:33: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.325 $)
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