blob: 2732c26cc37112657a837de7734ebbed065325b6 [file] [log] [blame]
Damien Miller7f6ea021999-10-28 13:25:17 +10001/* config.h.in. Generated by hand, don't use autoheader. */
2
Damien Millerc7b38ce1999-11-09 10:28:04 +11003/* SSL directory. */
4#undef ssldir
5
Damien Miller3f905871999-11-15 17:10:57 +11006/* Location of lastlog file */
7#undef LASTLOG_LOCATION
8
9/* Location of random number pool */
Damien Millerab18c411999-11-11 10:40:23 +110010#undef RANDOM_POOL
11
12/* Are we using the Entropy gathering daemon */
13#undef HAVE_EGD
14
Damien Miller7f6ea021999-10-28 13:25:17 +100015/* 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
Damien Millerab18c411999-11-11 10:40:23 +110020
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
Damien Miller5ce662a1999-11-11 17:57:39 +110026
Damien Miller3f905871999-11-15 17:10:57 +110027/* Define if you want external askpass support */
Damien Millerd05a2471999-11-15 14:25:30 +110028#undef USE_EXTERNAL_ASKPASS
Damien Miller5ce662a1999-11-11 17:57:39 +110029
Damien Miller3f905871999-11-15 17:10:57 +110030/* Define if libc defines __progname */
31#undef HAVE___PROGNAME
32
Damien Miller80297751999-11-19 13:03:25 +110033/* 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
Damien Miller04f80141999-11-19 15:32:34 +110045/* Define if your libraries define login() */
46#undef HAVE_LOGIN
47
48/* Define if your libraries define daemon() */
49#undef HAVE_DAEMON
50
Damien Miller6854f821999-11-13 10:49:55 +110051@BOTTOM@
52
Damien Miller3d1b22c1999-11-12 15:46:08 +110053/* ******************* Shouldn't need to edit below this line ************** */
54
Damien Miller4874c791999-11-16 13:29:26 +110055#include <sys/types.h> /* For u_intXX_t */
56#include <sys/socket.h> /* For SHUT_XXXX */
57#include <paths.h> /* For _PATH_XXX */
58
Damien Miller5ce662a1999-11-11 17:57:39 +110059#ifndef SHUT_RDWR
60enum
61{
62 SHUT_RD = 0, /* No more receptions. */
63#define SHUT_RD SHUT_RD
64 SHUT_WR, /* No more transmissions. */
65#define SHUT_WR SHUT_WR
66 SHUT_RDWR /* No more receptions or transmissions. */
67#define SHUT_RDWR SHUT_RDWR
68};
69#endif
Damien Miller0a6e6681999-11-15 09:56:06 +110070
71#if !defined(u_int32_t) && defined(uint32_t)
72#define u_int32_t uint32_t
73#endif
74
75#if !defined(u_int16_t) && defined(uint16_t)
76#define u_int16_t uint16_t
77#endif
Damien Miller3f905871999-11-15 17:10:57 +110078
Damien Miller4874c791999-11-16 13:29:26 +110079#if !defined(quad_t) && defined(int64_t)
80#define quad_t int64_t
81#endif
82
Damien Miller3f905871999-11-15 17:10:57 +110083#ifndef _PATH_LASTLOG
84# ifdef LASTLOG_LOCATION
85# define _PATH_LASTLOG LASTLOG_LOCATION
86# endif
87#endif
88
89#ifndef _PATH_UTMP
90# ifdef UTMP_FILE
91# define _PATH_UTMP UTMP_FILE
92# endif
93#endif
94
95#ifndef _PATH_WTMP
96# ifdef WTMP_FILE
97# define _PATH_WTMP WTMP_FILE
98# endif
99#endif
100
101#ifndef _PATH_BSHELL
102# define _PATH_BSHELL "/bin/sh"
103#endif
104
105#ifndef _PATH_STDPATH
106# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin:"
107#endif
108
109#ifndef _PATH_MAILDIR
110# ifdef MAILDIR
111# define _PATH_MAILDIR MAILDIR
112# endif
113#endif
Damien Miller4874c791999-11-16 13:29:26 +1100114
115#ifndef MAX
116# define MAX(a,b) (((a)>(b))?(a):(b))
117# define MIN(a,b) (((a)<(b))?(a):(b))
118#endif