source: trunk/athena/lib/al/configure.in @ 10596

Revision 10596, 479 bytes checked in by ghudson, 27 years ago (diff)
Athena login library sources, from the athena-login locker where initial development was done.
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(session.c)
3
4AC_PROG_CC
5AC_PROG_INSTALL
6AC_PROG_RANLIB
7
8AC_MSG_CHECKING(for /etc/master.passwd)
9if test -f /etc/master.passwd; then
10        AC_DEFINE(HAVE_MASTER_PASSWD)
11        AC_MSG_RESULT(yes)
12else
13        AC_MSG_RESULT(no)
14fi
15
16AC_MSG_CHECKING(for /etc/shadow)
17if test -f /etc/shadow; then
18        AC_DEFINE(HAVE_SHADOW)
19        AC_MSG_RESULT(yes)
20else
21        AC_MSG_RESULT(no)
22fi
23
24AC_CHECK_FUNCS(lckpwdf)
25
26ATHENA_HESIOD
27
28AC_OUTPUT(Makefile)
Note: See TracBrowser for help on using the repository browser.