diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-05-08 22:42:28 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-05-08 22:42:28 +0200 |
commit | 72af2ef8db31b13b8b51a2a29ed8edf36f3c89fb (patch) | |
tree | dc85011c12127c30286433343e71f9b5387f5021 /configure.in | |
parent | - (bal) UseLogin patch for Solaris/UNICOS. Patch by Wayne Davison (diff) | |
download | openssh-72af2ef8db31b13b8b51a2a29ed8edf36f3c89fb.tar.xz openssh-72af2ef8db31b13b8b51a2a29ed8edf36f3c89fb.zip |
- (bal) ./configure support to disable SIA on OSF1. Patch by
Chris Adams <cmadams@hiwaay.net>
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 4b1362a90..eb00a93a6 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.284 2001/05/08 20:33:06 mouring Exp $ +# $Id: configure.in,v 1.285 2001/05/08 20:42:28 mouring Exp $ AC_INIT(ssh.c) @@ -239,8 +239,18 @@ mips-sony-bsd|mips-sony-newsos4) MANTYPE=man ;; *-dec-osf*) - if test ! -z "$USE_SIA" ; then - AC_MSG_CHECKING(for Digital Unix Security Integration Architecture) + AC_MSG_CHECKING(for Digital Unix SIA) + no_osfsia="" + AC_ARG_WITH(osfsia, + [ --with-osfsia Enable Digital Unix SIA], + [ + if test "x$withval" = "xno" ; then + AC_MSG_RESULT(disabled) + no_osfsia=1 + fi + ], + ) + if test -z "$no_osfsia" ; then if test -f /etc/sia/matrix.conf; then AC_MSG_RESULT(yes) AC_DEFINE(HAVE_OSF_SIA) |