view m4/afs.m4 @ 3684:c8ed84e015e6

(__restrict_arr): Update from libc.
author Jim Meyering <jim@meyering.net>
date Sat, 15 Dec 2001 16:57:15 +0000
parents cf4bc87fabd5
children 7141ea4946af
line wrap: on
line source

#serial 5

AC_DEFUN([jm_AFS],
  [
    AC_MSG_CHECKING(for AFS)
    if test -d /afs; then
      AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.])
      ac_result=yes
    else
      ac_result=no
    fi
    AC_MSG_RESULT($ac_result)
  ])