afs.m4 617 B

1234567891011121314151617
  1. #serial 8
  2. # Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
  3. # This file is free software; the Free Software Foundation
  4. # gives unlimited permission to copy and/or distribute it,
  5. # with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_AFS],
  7. [
  8. AC_ARG_WITH(afs,
  9. AC_HELP_STRING([--with-afs],
  10. [support for the Andrew File System [[default=no]]]),
  11. test "$withval" = no || with_afs=yes, with_afs=no)
  12. if test "$with_afs" = yes; then
  13. AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.])
  14. fi
  15. ])