view m4/afs.m4 @ 5016:7141ea4946af

Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
author Jim Meyering <jim@meyering.net>
date Sun, 18 Apr 2004 18:12:50 +0000
parents cf4bc87fabd5
children a535859efd14
line wrap: on
line source

#serial 6

AC_DEFUN([gl_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)
  ])