]> andersk Git - openssh.git/blobdiff - acconfig.h
- Added BSD compatible install program and autoconf test, thanks to
[openssh.git] / acconfig.h
index 6459c6371f56fd0c378473b995f43ad857514a04..e6892ee5538d6c598d32c3230a194cce4264cb15 100644 (file)
 
 /* ******************* Shouldn't need to edit below this line ************** */
 
-# include <sys/types.h> /* For u_intXX_t */
-# include <sys/socket.h> /* For SHUT_XXXX */
+#include <sys/types.h> /* For u_intXX_t */
+#include <sys/socket.h> /* For SHUT_XXXX */
 
 #ifdef HAVE_PATHS_H
 # include <paths.h> /* For _PATH_XXX */
 #endif 
 
+#ifdef HAVE_UTMP_H
+# include <utmp.h> /* For _PATH_XXX */
+#endif 
+
 #ifdef HAVE_SYS_TIME_H
 # include <sys/time.h> /* For timersub */
 #endif
 
+#ifdef HAVE_MAILLOCK_H
+#include <maillock.h>
+#endif
+
 #ifndef SHUT_RDWR
 enum
 {
@@ -159,12 +167,16 @@ enum
 #ifndef _PATH_UTMP
 # ifdef UTMP_FILE
 #  define _PATH_UTMP UTMP_FILE
+# else
+#  define _PATH_UTMP "/var/adm/utmp"
 # endif
 #endif
 
 #ifndef _PATH_WTMP
 # ifdef WTMP_FILE
 #  define _PATH_WTMP WTMP_FILE
+# else
+#  define _PATH_WTMP "/var/adm/wtmp"
 # endif
 #endif
 
@@ -176,6 +188,10 @@ enum
 # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:"
 #endif
 
+#ifndef _PATH_DEVNULL
+# define _PATH_DEVNULL "/dev/null"
+#endif
+
 #ifndef _PATH_MAILDIR
 # ifdef MAILDIR
 #  define _PATH_MAILDIR MAILDIR
This page took 0.050684 seconds and 4 git commands to generate.