diff options
Diffstat (limited to 'lib/afs.m4')
-rw-r--r-- | lib/afs.m4 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/afs.m4 b/lib/afs.m4 new file mode 100644 index 0000000..13f3bc9 --- /dev/null +++ b/lib/afs.m4 | |||
@@ -0,0 +1,12 @@ | |||
1 | #serial 3 | ||
2 | |||
3 | AC_DEFUN(jm_AFS, | ||
4 | AC_MSG_CHECKING(for AFS) | ||
5 | if test -d /afs; then | ||
6 | AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.]) | ||
7 | ac_result=yes | ||
8 | else | ||
9 | ac_result=no | ||
10 | fi | ||
11 | AC_MSG_RESULT($ac_result) | ||
12 | ) | ||