diff options
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/acconfig.h b/acconfig.h index 6459c6371..86ce003aa 100644 --- a/acconfig.h +++ b/acconfig.h | |||
@@ -68,17 +68,25 @@ | |||
68 | 68 | ||
69 | /* ******************* Shouldn't need to edit below this line ************** */ | 69 | /* ******************* Shouldn't need to edit below this line ************** */ |
70 | 70 | ||
71 | # include <sys/types.h> /* For u_intXX_t */ | 71 | #include <sys/types.h> /* For u_intXX_t */ |
72 | # include <sys/socket.h> /* For SHUT_XXXX */ | 72 | #include <sys/socket.h> /* For SHUT_XXXX */ |
73 | 73 | ||
74 | #ifdef HAVE_PATHS_H | 74 | #ifdef HAVE_PATHS_H |
75 | # include <paths.h> /* For _PATH_XXX */ | 75 | # include <paths.h> /* For _PATH_XXX */ |
76 | #endif | 76 | #endif |
77 | 77 | ||
78 | #ifdef HAVE_UTMP_H | ||
79 | # include <utmp.h> /* For _PATH_XXX */ | ||
80 | #endif | ||
81 | |||
78 | #ifdef HAVE_SYS_TIME_H | 82 | #ifdef HAVE_SYS_TIME_H |
79 | # include <sys/time.h> /* For timersub */ | 83 | # include <sys/time.h> /* For timersub */ |
80 | #endif | 84 | #endif |
81 | 85 | ||
86 | #ifdef HAVE_MAILLOCK_H | ||
87 | #include <maillock.h> | ||
88 | #endif | ||
89 | |||
82 | #ifndef SHUT_RDWR | 90 | #ifndef SHUT_RDWR |
83 | enum | 91 | enum |
84 | { | 92 | { |
@@ -176,6 +184,10 @@ enum | |||
176 | # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:" | 184 | # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:" |
177 | #endif | 185 | #endif |
178 | 186 | ||
187 | #ifndef _PATH_DEVNULL | ||
188 | # define _PATH_DEVNULL "/dev/null" | ||
189 | #endif | ||
190 | |||
179 | #ifndef _PATH_MAILDIR | 191 | #ifndef _PATH_MAILDIR |
180 | # ifdef MAILDIR | 192 | # ifdef MAILDIR |
181 | # define _PATH_MAILDIR MAILDIR | 193 | # define _PATH_MAILDIR MAILDIR |