]> andersk Git - openssh.git/blob - acconfig.h
05296f9badc57f7bfc002c95f1aa4a9c44b97d4e
[openssh.git] / acconfig.h
1 /* config.h.in.  Generated by hand, don't use autoheader.  */
2
3 /* SSL directory.  */
4 #undef ssldir
5
6 /* Location of lastlog file */
7 #undef LASTLOG_LOCATION
8
9 /* Location of random number pool  */
10 #undef RANDOM_POOL
11
12 /* Are we using the Entropy gathering daemon */
13 #undef HAVE_EGD
14
15 /* Define if your ssl headers are included with #include <ssl/header.h>  */
16 #undef HAVE_SSL
17
18 /* Define if your ssl headers are included with #include <openssl/header.h>  */
19 #undef HAVE_OPENSSL
20
21 /* Define is utmp.h has a ut_host field */
22 #undef HAVE_HOST_IN_UTMP
23
24 /* Define is libutil has login() function */
25 #undef HAVE_LIBUTIL_LOGIN
26
27 /* Define if you want external askpass support */
28 #undef USE_EXTERNAL_ASKPASS
29
30 /* Define if libc defines __progname */
31 #undef HAVE___PROGNAME
32
33 @BOTTOM@
34
35 /* ******************* Shouldn't need to edit below this line ************** */
36
37 #include <sys/types.h> /* For u_intXX_t */
38 #include <sys/socket.h> /* For SHUT_XXXX */
39 #include <paths.h> /* For _PATH_XXX */
40
41 #ifndef SHUT_RDWR
42 enum
43 {
44   SHUT_RD = 0,    /* No more receptions.  */
45 #define SHUT_RD   SHUT_RD
46   SHUT_WR,    /* No more transmissions.  */
47 #define SHUT_WR   SHUT_WR
48   SHUT_RDWR   /* No more receptions or transmissions.  */
49 #define SHUT_RDWR SHUT_RDWR
50 };
51 #endif
52
53 #if !defined(u_int32_t) && defined(uint32_t)
54 #define u_int32_t uint32_t
55 #endif
56
57 #if !defined(u_int16_t) && defined(uint16_t)
58 #define u_int16_t uint16_t
59 #endif
60
61 #if !defined(quad_t) && defined(int64_t)
62 #define quad_t int64_t
63 #endif
64
65 #ifndef _PATH_LASTLOG
66 # ifdef LASTLOG_LOCATION
67 #  define _PATH_LASTLOG LASTLOG_LOCATION
68 # endif
69 #endif
70
71 #ifndef _PATH_UTMP
72 # ifdef UTMP_FILE
73 #  define _PATH_UTMP UTMP_FILE
74 # endif
75 #endif
76
77 #ifndef _PATH_WTMP
78 # ifdef WTMP_FILE
79 #  define _PATH_WTMP WTMP_FILE
80 # endif
81 #endif
82
83 #ifndef _PATH_BSHELL
84 # define _PATH_BSHELL "/bin/sh"
85 #endif
86
87 #ifndef _PATH_STDPATH
88 # define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:"
89 #endif
90
91 #ifndef _PATH_MAILDIR
92 # ifdef MAILDIR
93 #  define _PATH_MAILDIR MAILDIR
94 # endif
95 #endif
96
97 #ifndef MAX
98 # define MAX(a,b) (((a)>(b))?(a):(b))
99 # define MIN(a,b) (((a)<(b))?(a):(b))
100 #endif
This page took 0.039847 seconds and 3 git commands to generate.