/config/ac_pam.m4

https://code.google.com/ · m4 · 35 lines · 16 code · 1 blank · 18 comment · 0 complexity · dbec47d4b6a2d1149d2132b6be2c90e7 MD5 · raw file

  1. ##*****************************************************************************
  2. ## $Id$
  3. ##*****************************************************************************
  4. # AUTHOR:
  5. # Jim Garlick <garlick@llnl.gov>
  6. #
  7. # SYNOPSIS:
  8. # AC_PAM
  9. #
  10. # DESCRIPTION:
  11. # Checks for pam support.
  12. #
  13. # WARNINGS:
  14. # This macro must be placed after AC_PROG_CC or equivalent.
  15. ##*****************************************************************************
  16. AC_DEFUN([AC_PAM],
  17. [
  18. #
  19. # Default is to have pam built
  20. #
  21. AC_MSG_CHECKING([for whether to build with pam support])
  22. AC_ARG_WITH([pam],
  23. AC_HELP_STRING([--without-pam],
  24. [Do not build qshell/mqshell with pam support]),
  25. [ case "$withval" in
  26. no) ac_with_pam=no ;;
  27. yes) ac_with_pam=yes ;;
  28. *) AC_MSG_RESULT([doh!])
  29. AC_MSG_ERROR([bad value "$withval" for --with-pam]) ;;
  30. esac
  31. ]
  32. )
  33. AC_MSG_RESULT([${ac_with_pam=yes}])
  34. ])