afs.m4 233 B

123456789101112
  1. #serial 3
  2. AC_DEFUN(jm_AFS,
  3. AC_MSG_CHECKING(for AFS)
  4. if test -d /afs; then
  5. AC_DEFINE_UNQUOTED(AFS, 1, [Define if you have the Andrew File System.])
  6. ac_result=yes
  7. else
  8. ac_result=no
  9. fi
  10. AC_MSG_RESULT($ac_result)
  11. )