diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-23 21:00:27 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-23 22:59:56 +0200 |
commit | a16a56f60156b3284f9acef9a675122b36ebf7dc (patch) | |
tree | ef9c90bc82af68edf393f2571131319b2dec28d0 /source3/configure.in | |
parent | 2d80364f1ba33519a4b12a5d910ff58d74e6e5c2 (diff) | |
download | samba-a16a56f60156b3284f9acef9a675122b36ebf7dc.tar.gz |
s3: PAM_RHOST and PAM_TTY are enums on FreeBSD
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index db524d58919..02904800a35 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 <security/pam_appl.h> + #elif defined(HAVE_PAM_PAM_APPL_H) + #include <pam/pam_appl.h> + #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 <security/pam_appl.h> + #elif defined(HAVE_PAM_PAM_APPL_H) + #include <pam/pam_appl.h> + #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 ################################################# |