From a16a56f60156b3284f9acef9a675122b36ebf7dc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 23 Aug 2010 21:00:27 +0200 Subject: s3: PAM_RHOST and PAM_TTY are enums on FreeBSD --- source3/configure.in | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index db524d5891..02904800a3 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4586,6 +4586,29 @@ if test x"${try_pam}" != x"no";then AC_MSG_CHECKING(whether to have PAM MODULES support) AC_MSG_RESULT([$create_pam_modules]) + + AC_TRY_COMPILE([ + #if defined(HAVE_SECURITY_PAM_APPL_H) + #include + #elif defined(HAVE_PAM_PAM_APPL_H) + #include + #endif],[ + pam_set_item(0, PAM_RHOST, 0); + ], + AC_DEFINE(HAVE_PAM_RHOST, 1, + [Define to 1 if PAM_RHOST is available]),[]) + + AC_TRY_COMPILE([ + #if defined(HAVE_SECURITY_PAM_APPL_H) + #include + #elif defined(HAVE_PAM_PAM_APPL_H) + #include + #endif],[ + pam_set_item(0, PAM_TTY, 0); + ], + AC_DEFINE(HAVE_PAM_TTY, 1, + [Define to 1 if PAM_TTY is available]),[]) + fi # try_pam != no ################################################# -- cgit