]> andersk Git - openssh.git/blame - acconfig.h
- Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
[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
91b8065d 33/* Define if you want Kerberos 4 support */
34#undef KRB4
35
36/* Define if you want AFS support */
37#undef AFS
38
39/* Define if you want S/Key support */
40#undef SKEY
41
42/* Define if you want TCP Wrappers support */
43#undef LIBWRAP
44
beb43d31 45/* Define if your libraries define login() */
46#undef HAVE_LOGIN
47
48/* Define if your libraries define daemon() */
49#undef HAVE_DAEMON
50
caf3bc51 51/* Define if you want to allow MD5 passwords */
52#undef HAVE_MD5_PASSWORDS
53
dcf3fbb2 54@BOTTOM@
55
045672f9 56/* ******************* Shouldn't need to edit below this line ************** */
6a17f9c2 57
793edc37 58#include <sys/types.h> /* For u_intXX_t */
59#include <sys/socket.h> /* For SHUT_XXXX */
60#include <paths.h> /* For _PATH_XXX */
61
6a17f9c2 62#ifndef SHUT_RDWR
63enum
64{
65 SHUT_RD = 0, /* No more receptions. */
66#define SHUT_RD SHUT_RD
67 SHUT_WR, /* No more transmissions. */
68#define SHUT_WR SHUT_WR
69 SHUT_RDWR /* No more receptions or transmissions. */
70#define SHUT_RDWR SHUT_RDWR
71};
72#endif
92da7197 73
74#if !defined(u_int32_t) && defined(uint32_t)
75#define u_int32_t uint32_t
76#endif
77
78#if !defined(u_int16_t) && defined(uint16_t)
79#define u_int16_t uint16_t
80#endif
f601d847 81
793edc37 82#if !defined(quad_t) && defined(int64_t)
83#define quad_t int64_t
84#endif
85
f601d847 86#ifndef _PATH_LASTLOG
87# ifdef LASTLOG_LOCATION
88# define _PATH_LASTLOG LASTLOG_LOCATION
89# endif
90#endif
91
92#ifndef _PATH_UTMP
93# ifdef UTMP_FILE
94# define _PATH_UTMP UTMP_FILE
95# endif
96#endif
97
98#ifndef _PATH_WTMP
99# ifdef WTMP_FILE
100# define _PATH_WTMP WTMP_FILE
101# endif
102#endif
103
104#ifndef _PATH_BSHELL
105# define _PATH_BSHELL "/bin/sh"
106#endif
107
108#ifndef _PATH_STDPATH
109# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:"
110#endif
111
112#ifndef _PATH_MAILDIR
113# ifdef MAILDIR
114# define _PATH_MAILDIR MAILDIR
115# endif
116#endif
793edc37 117
118#ifndef MAX
119# define MAX(a,b) (((a)>(b))?(a):(b))
120# define MIN(a,b) (((a)<(b))?(a):(b))
121#endif
This page took 0.091762 seconds and 5 git commands to generate.