summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-23 11:24:32 +1100
committerDamien Miller <djm@mindrot.org>1999-11-23 11:24:32 +1100
commit3744b5191822525a69861c1bc035cf955be196a1 (patch)
tree6bfe45789d09f666ba68520dc3bd5ed83f8665cb /acconfig.h
parent294df785b8f67a5890d1e49ba883d530cdfb534c (diff)
- Numerous little Solaris fixes
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h16
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
83enum 91enum
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