summaryrefslogtreecommitdiff
path: root/source3/pam_smbpass/pam_smb_auth.c
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2007-05-23 20:31:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:22:45 -0500
commitf4ae28576376741a5402a286827a46c053db0ff7 (patch)
treeea00880459b82e677e2eb38ebc5dcc608d5e053a /source3/pam_smbpass/pam_smb_auth.c
parentb683f8137baa6d7d4ddb6db6fe4f7b2141abd071 (diff)
downloadsamba-f4ae28576376741a5402a286827a46c053db0ff7.tar.gz
samba-f4ae28576376741a5402a286827a46c053db0ff7.tar.bz2
samba-f4ae28576376741a5402a286827a46c053db0ff7.zip
r23095: Support systems that have their PAM headers in /usr/include/pam.
(This used to be commit f1e8de4b576b3954d456cb64c02417908bab8da4)
Diffstat (limited to 'source3/pam_smbpass/pam_smb_auth.c')
-rw-r--r--source3/pam_smbpass/pam_smb_auth.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/pam_smbpass/pam_smb_auth.c b/source3/pam_smbpass/pam_smb_auth.c
index df6d20e01a..ceb23c3633 100644
--- a/source3/pam_smbpass/pam_smb_auth.c
+++ b/source3/pam_smbpass/pam_smb_auth.c
@@ -24,11 +24,19 @@
#ifndef LINUX
/* This is only used in the Sun implementation. */
+#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
#endif /* LINUX */
+#if defined(HAVE_SECURITY_PAM_MODULES_H)
#include <security/pam_modules.h>
+#elif defined(HAVE_PAM_PAM_MODULES_H)
+#include <pam/pam_modules.h>
+#endif
#include "general.h"