Revision 12582,
672 bytes
checked in by danw, 26 years ago
(diff) |
liblocker, a library for attaching, detaching, and otherwise dealing with
lockers
|
Line | |
---|
1 | dnl Process this file with autoconf to produce a configure script. |
---|
2 | AC_INIT(locker.h) |
---|
3 | |
---|
4 | AC_PROG_CC |
---|
5 | AC_PROG_INSTALL |
---|
6 | AC_PROG_RANLIB |
---|
7 | AC_PATH_PROG(MOUNT_CMD, mount, , ${PATH}:/sbin:/usr/sbin) |
---|
8 | AC_PATH_PROG(UMOUNT_CMD, umount, , ${PATH}:/sbin:/usr/sbin) |
---|
9 | |
---|
10 | AC_MSG_CHECKING(if rpcsvc/mount.h needs sys/fs/nfs.h) |
---|
11 | AC_TRY_COMPILE([ |
---|
12 | #include <rpc/rpc.h> |
---|
13 | #include <rpcsvc/mount.h> |
---|
14 | ], , AC_MSG_RESULT(no), AC_TRY_COMPILE([ |
---|
15 | #include <rpc/rpc.h> |
---|
16 | #include <sys/fs/nfs.h> |
---|
17 | #include <rpcsvc/mount.h> |
---|
18 | ], , AC_MSG_RESULT(yes) |
---|
19 | AC_DEFINE(NEED_SYS_FS_NFS_H), |
---|
20 | AC_MSG_ERROR(couldn't include rpcsvc/mount.h))) |
---|
21 | |
---|
22 | ATHENA_KRB4_REQUIRED |
---|
23 | ATHENA_AFS_REQUIRED |
---|
24 | ATHENA_HESIOD_REQUIRED |
---|
25 | |
---|
26 | AC_OUTPUT(Makefile) |
---|
Note: See
TracBrowser
for help on using the repository browser.