From f4ae28576376741a5402a286827a46c053db0ff7 Mon Sep 17 00:00:00 2001 From: James Peach Date: Wed, 23 May 2007 20:31:28 +0000 Subject: r23095: Support systems that have their PAM headers in /usr/include/pam. (This used to be commit f1e8de4b576b3954d456cb64c02417908bab8da4) --- source3/auth/pampass.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/auth') diff --git a/source3/auth/pampass.c b/source3/auth/pampass.c index ba11d2e8fc..a83e2bcb3f 100644 --- a/source3/auth/pampass.c +++ b/source3/auth/pampass.c @@ -41,7 +41,11 @@ * which determines what actions/limitations/allowances become affected. *********************************************************************/ +#if defined(HAVE_SECURITY_PAM_APPL_H) #include +#elif defined(HAVE_PAM_PAM_APPL_H) +#include +#endif /* * Structure used to communicate between the conversation function -- cgit