blob: 56075fd9f04573808befb2803dccfcf410d0feff [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 Millerab18c411999-11-11 10:40:23 +11006/* Random number pool */
7#undef RANDOM_POOL
8
9/* Are we using the Entropy gathering daemon */
10#undef HAVE_EGD
11
Damien Miller7f6ea021999-10-28 13:25:17 +100012/* Define if your ssl headers are included with #include <ssl/header.h> */
13#undef HAVE_SSL
14
15/* Define if your ssl headers are included with #include <openssl/header.h> */
16#undef HAVE_OPENSSL
Damien Millerab18c411999-11-11 10:40:23 +110017
18/* Define is utmp.h has a ut_host field */
19#undef HAVE_HOST_IN_UTMP
20
21/* Define is libutil has login() function */
22#undef HAVE_LIBUTIL_LOGIN
Damien Miller5ce662a1999-11-11 17:57:39 +110023
24
25/* Shouldn't need to edit below this line *************************** */
26#ifndef SHUT_RDWR
27enum
28{
29 SHUT_RD = 0, /* No more receptions. */
30#define SHUT_RD SHUT_RD
31 SHUT_WR, /* No more transmissions. */
32#define SHUT_WR SHUT_WR
33 SHUT_RDWR /* No more receptions or transmissions. */
34#define SHUT_RDWR SHUT_RDWR
35};
36#endif