/config/ac_netgroup.m4

https://code.google.com/ · m4 · 39 lines · 19 code · 2 blank · 18 comment · 0 complexity · c57317891577a3ec4faab82547ce41fa MD5 · raw file

  1. ##*****************************************************************************
  2. ## $Id: ac_dshgroup.m4 771 2004-02-11 00:12:20Z grondo $
  3. ##*****************************************************************************
  4. # AUTHOR:
  5. # Mark Grondona <mgrondona@llnl.gov>
  6. #
  7. # SYNOPSIS:
  8. # AC_NETGROUP
  9. #
  10. # DESCRIPTION:
  11. # Checks for whether to include the standard dshgroup module.
  12. #
  13. # WARNINGS:
  14. # This macro must be placed after AC_PROG_CC or equivalent.
  15. ##*****************************************************************************
  16. AC_DEFUN([AC_NETGROUP],
  17. [
  18. #
  19. # Check for whether to include the dshgroup module
  20. #
  21. AC_MSG_CHECKING([for whether to build netgroup module])
  22. AC_ARG_WITH([netgroup],
  23. AC_HELP_STRING([--with-netgroup],
  24. [Build netgroup module for netgroups support]),
  25. [ case "$withval" in
  26. no) ac_with_netgroup=no ;;
  27. yes) ac_with_netgroup=yes ;;
  28. *) AC_MSG_RESULT([doh!])
  29. AC_MSG_ERROR([bad value "$withval" for --with-netgroup]) ;;
  30. esac
  31. ]
  32. )
  33. AC_MSG_RESULT([${ac_with_netgroup=no}])
  34. if test "$ac_with_netgroup" = "yes"; then
  35. AC_ADD_STATIC_MODULE("netgroup")
  36. fi
  37. ])