summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/defines.h b/defines.h
index 9d5d17f2b..bcab3c080 100644
--- a/defines.h
+++ b/defines.h
@@ -18,9 +18,13 @@
18#endif 18#endif
19 19
20#ifdef HAVE_MAILLOCK_H 20#ifdef HAVE_MAILLOCK_H
21#include <maillock.h> 21# include <maillock.h> /* For _PATH_MAILDIR */
22#endif 22#endif
23 23
24#ifdef HAVE_SYS_CDEFS_H
25# include <sys/cdefs.h> /* For __P() */
26#endif
27
24#ifndef SHUT_RDWR 28#ifndef SHUT_RDWR
25enum 29enum
26{ 30{
@@ -205,3 +209,8 @@ enum
205# define _PATH_RSH RSH_PATH 209# define _PATH_RSH RSH_PATH
206# endif /* RSH_PATH */ 210# endif /* RSH_PATH */
207#endif /* _PATH_RSH */ 211#endif /* _PATH_RSH */
212
213#if defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM)
214# define USE_PAM
215#endif /* defined(HAVE_SECURITY_PAM_APPL_H) && !defined(DISABLE_PAM) */
216