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 | |
---|
1 | dnl Process this file with autoconf to produce a configure script. |
---|
2 | AC_INIT(session.c) |
---|
3 | |
---|
4 | AC_PROG_CC |
---|
5 | AC_PROG_INSTALL |
---|
6 | AC_PROG_RANLIB |
---|
7 | |
---|
8 | AC_MSG_CHECKING(for /etc/master.passwd) |
---|
9 | if test -f /etc/master.passwd; then |
---|
10 | AC_DEFINE(HAVE_MASTER_PASSWD) |
---|
11 | AC_MSG_RESULT(yes) |
---|
12 | else |
---|
13 | AC_MSG_RESULT(no) |
---|
14 | fi |
---|
15 | |
---|
16 | AC_MSG_CHECKING(for /etc/shadow) |
---|
17 | if test -f /etc/shadow; then |
---|
18 | AC_DEFINE(HAVE_SHADOW) |
---|
19 | AC_MSG_RESULT(yes) |
---|
20 | else |
---|
21 | AC_MSG_RESULT(no) |
---|
22 | fi |
---|
23 | |
---|
24 | AC_CHECK_FUNCS(lckpwdf) |
---|
25 | |
---|
26 | ATHENA_HESIOD |
---|
27 | |
---|
28 | AC_OUTPUT(Makefile) |
---|
Note: See
TracBrowser
for help on using the repository browser.