diff options
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 @@ | |||
1 | # $Id: configure.in,v 1.284 2001/05/08 20:33:06 mouring Exp $ | 1 | # $Id: configure.in,v 1.285 2001/05/08 20:42:28 mouring Exp $ |
2 | 2 | ||
3 | AC_INIT(ssh.c) | 3 | AC_INIT(ssh.c) |
4 | 4 | ||
@@ -239,8 +239,18 @@ mips-sony-bsd|mips-sony-newsos4) | |||
239 | MANTYPE=man | 239 | MANTYPE=man |
240 | ;; | 240 | ;; |
241 | *-dec-osf*) | 241 | *-dec-osf*) |
242 | if test ! -z "$USE_SIA" ; then | 242 | AC_MSG_CHECKING(for Digital Unix SIA) |
243 | AC_MSG_CHECKING(for Digital Unix Security Integration Architecture) | 243 | no_osfsia="" |
244 | AC_ARG_WITH(osfsia, | ||
245 | [ --with-osfsia Enable Digital Unix SIA], | ||
246 | [ | ||
247 | if test "x$withval" = "xno" ; then | ||
248 | AC_MSG_RESULT(disabled) | ||
249 | no_osfsia=1 | ||
250 | fi | ||
251 | ], | ||
252 | ) | ||
253 | if test -z "$no_osfsia" ; then | ||
244 | if test -f /etc/sia/matrix.conf; then | 254 | if test -f /etc/sia/matrix.conf; then |
245 | AC_MSG_RESULT(yes) | 255 | AC_MSG_RESULT(yes) |
246 | AC_DEFINE(HAVE_OSF_SIA) | 256 | AC_DEFINE(HAVE_OSF_SIA) |