summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-06-28 15:22:41 +1000
committerDamien Miller <djm@mindrot.org>2000-06-28 15:22:41 +1000
commitb8c656e744a0a9110e5eb0ea5a6587efb181b20a (patch)
tree090ecdf170d3a8e3b184a1607a1807fac26d663a /configure.in
parent262ff170fbd9d2071a43e97656a6bd705dda7e4c (diff)
- (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
support. Enable using "USE_SIA=1 ./configure [options]"
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index c1bcb3424..4dd08c71a 100644
--- a/configure.in
+++ b/configure.in
@@ -150,6 +150,20 @@ case "$host" in
150 LIBS="$LIBS -lgen -lsocket" 150 LIBS="$LIBS -lgen -lsocket"
151 no_dev_ptmx=1 151 no_dev_ptmx=1
152 ;; 152 ;;
153*-dec-osf*)
154# This is untested
155 if test ! -z "USE_SIA" ; then
156 AC_MSG_CHECKING(for Digital Unix Security Integration Architecture)
157 if test -f /etc/sia/matrix.conf; then
158 AC_MSG_RESULT(yes)
159 AC_DEFINE(HAVE_OSF_SIA)
160 AC_DEFINE(DISABLE_LOGIN)
161 LIBS="$LIBS -lsecurity -ldb -lm -laud"
162 else
163 AC_MSG_RESULT(no)
164 fi
165 fi
166 ;;
153esac 167esac
154 168
155# Allow user to specify flags 169# Allow user to specify flags