summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2013-03-16 20:55:46 -0700
committerTim Rice <tim@multitalents.net>2013-03-16 20:55:46 -0700
commitaa86c3970f24fc22185a9561ae84eeae0c6d15cd (patch)
tree5442f1959d28524db6ee0820fe7e0252237c3575 /configure.ac
parent585284019020eccaf0ce744df198bd56b6aa109f (diff)
- (tim) [configure.ac] OpenServer 5 wants lastlog even though it has none
of the bits the configure test looks for.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 907192d60..5d835c93d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.516 2013/03/14 23:34:25 djm Exp $ 1# $Id: configure.ac,v 1.517 2013/03/17 03:55:47 tim 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.516 $) 18AC_REVISION($Revision: 1.517 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -897,6 +897,7 @@ mips-sony-bsd|mips-sony-newsos4)
897 AC_CHECK_FUNCS([getluid setluid]) 897 AC_CHECK_FUNCS([getluid setluid])
898 MANTYPE=man 898 MANTYPE=man
899 TEST_SHELL=ksh 899 TEST_SHELL=ksh
900 SKIP_DISABLE_LASTLOG_DEFINE=yes
900 ;; 901 ;;
901*-*-unicosmk*) 902*-*-unicosmk*)
902 AC_DEFINE([NO_SSH_LASTLOG], [1], 903 AC_DEFINE([NO_SSH_LASTLOG], [1],
@@ -4472,7 +4473,9 @@ if test ! -z "$blibpath" ; then
4472fi 4473fi
4473 4474
4474AC_CHECK_MEMBER([struct lastlog.ll_line], [], [ 4475AC_CHECK_MEMBER([struct lastlog.ll_line], [], [
4476 if test x$SKIP_DISABLE_LASTLOG_DEFINE != "xyes" ; then
4475 AC_DEFINE([DISABLE_LASTLOG]) 4477 AC_DEFINE([DISABLE_LASTLOG])
4478 fi
4476 ], [ 4479 ], [
4477#ifdef HAVE_SYS_TYPES_H 4480#ifdef HAVE_SYS_TYPES_H
4478#include <sys/types.h> 4481#include <sys/types.h>