]> andersk Git - openssh.git/blame - acconfig.h
- Merged more Solaris compability from Marc G. Fournier
[openssh.git] / acconfig.h
CommitLineData
5881cd60 1/* config.h.in. Generated by hand, don't use autoheader. */
2
d4f11b59 3/* SSL directory. */
4#undef ssldir
5
f601d847 6/* Location of lastlog file */
7#undef LASTLOG_LOCATION
8
9/* Location of random number pool */
4cca272e 10#undef RANDOM_POOL
11
12/* Are we using the Entropy gathering daemon */
13#undef HAVE_EGD
14
5881cd60 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
4cca272e 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
6a17f9c2 26
f601d847 27/* Define if you want external askpass support */
dad9a31e 28#undef USE_EXTERNAL_ASKPASS
045672f9 29
f601d847 30/* Define if libc defines __progname */
31#undef HAVE___PROGNAME
32
dcf3fbb2 33@BOTTOM@
34
045672f9 35/* ******************* Shouldn't need to edit below this line ************** */
6a17f9c2 36
6a17f9c2 37#ifndef SHUT_RDWR
38enum
39{
40 SHUT_RD = 0, /* No more receptions. */
41#define SHUT_RD SHUT_RD
42 SHUT_WR, /* No more transmissions. */
43#define SHUT_WR SHUT_WR
44 SHUT_RDWR /* No more receptions or transmissions. */
45#define SHUT_RDWR SHUT_RDWR
46};
47#endif
92da7197 48
f601d847 49#include <sys/types.h> /* For u_intXX_t */
50#include <paths.h> /* For _PATH_XXX */
51
92da7197 52#if !defined(u_int32_t) && defined(uint32_t)
53#define u_int32_t uint32_t
54#endif
55
56#if !defined(u_int16_t) && defined(uint16_t)
57#define u_int16_t uint16_t
58#endif
f601d847 59
60#ifndef _PATH_LASTLOG
61# ifdef LASTLOG_LOCATION
62# define _PATH_LASTLOG LASTLOG_LOCATION
63# endif
64#endif
65
66#ifndef _PATH_UTMP
67# ifdef UTMP_FILE
68# define _PATH_UTMP UTMP_FILE
69# endif
70#endif
71
72#ifndef _PATH_WTMP
73# ifdef WTMP_FILE
74# define _PATH_WTMP WTMP_FILE
75# endif
76#endif
77
78#ifndef _PATH_BSHELL
79# define _PATH_BSHELL "/bin/sh"
80#endif
81
82#ifndef _PATH_STDPATH
83# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:"
84#endif
85
86#ifndef _PATH_MAILDIR
87# ifdef MAILDIR
88# define _PATH_MAILDIR MAILDIR
89# endif
90#endif
This page took 0.072407 seconds and 5 git commands to generate.