(main): parse arguments, config file and read master key iff there's
[heimdal.git] / acconfig.h
blob15cabce4cc557eb59f28030edfb42265ffa5ad2d
1 @BOTTOM@
3 /* This should be handled by automake */
4 #undef VERSION
5 #undef PACKAGE
7 #undef HAVE_INT8_T
8 #undef HAVE_INT16_T
9 #undef HAVE_INT32_T
10 #undef HAVE_INT64_T
11 #undef HAVE_U_INT8_T
12 #undef HAVE_U_INT16_T
13 #undef HAVE_U_INT32_T
14 #undef HAVE_U_INT64_T
16 /* Define this to the type ssize_t should be */
17 #undef ssize_t
19 /* Define this to the type sig_atomic_t should be */
20 #undef sig_atomic_t
22 /* Define this to the type mode_t should be */
23 #undef mode_t
25 /* Define this if struct utmp have ut_user */
26 #undef HAVE_UT_USER
28 /* Define this if struct utmp have ut_host */
29 #undef HAVE_UT_HOST
31 /* Define this if struct utmp have ut_addr */
32 #undef HAVE_UT_ADDR
34 /* Define this if struct utmp have ut_type */
35 #undef HAVE_UT_TYPE
37 /* Define this if struct utmp have ut_pid */
38 #undef HAVE_UT_PID
40 /* Define this if struct utmp have ut_id */
41 #undef HAVE_UT_ID
43 /* Define this if struct utmpx have ut_syslen */
44 #undef HAVE_UT_SYSLEN
46 /* define if you have h_errno */
47 #undef HAVE_H_ERRNO
49 /* define if you have h_errlist but not hstrerror */
50 #undef HAVE_H_ERRLIST
52 /* define if you have h_nerr but not hstrerror */
53 #undef HAVE_H_NERR
55 /* define if your system doesn't declare h_errlist */
56 #undef HAVE_H_ERRLIST_DECLARATION
58 /* define if your system doesn't declare h_nerr */
59 #undef HAVE_H_NERR_DECLARATION
61 /* define this if you need a declaration for h_errno */
62 #undef HAVE_H_ERRNO_DECLARATION
64 /* define if you need a declaration for optarg */
65 #undef HAVE_OPTARG_DECLARATION
67 /* define if you need a declaration for optind */
68 #undef HAVE_OPTIND_DECLARATION
70 /* define if you need a declaration for opterr */
71 #undef HAVE_OPTERR_DECLARATION
73 /* define if you need a declaration for optopt */
74 #undef HAVE_OPTOPT_DECLARATION
76 /* define if you need a declaration for __progname */
77 #undef HAVE___PROGNAME_DECLARATION
79 /* define if the system is missing a prototype for crypt() */
80 #undef NEED_CRYPT_PROTO
82 /* define if the system is missing a prototype for strtok_r() */
83 #undef NEED_STRTOK_R_PROTO
85 /* Define this if your `struct tm' has a field `tm_gmtoff' */
86 #undef HAVE_STRUCT_TM_TM_GMTOFF
88 /* define if getcwd() is broken (such as in SunOS) */
89 #undef BROKEN_GETCWD
91 /* Define this if you have a variable `timezone' */
92 #undef HAVE_TIMEZONE
94 /* Define this if struct winsize is declared in sys/termios.h */
95 #undef HAVE_STRUCT_WINSIZE
97 /* Define this if struct winsize has ws_xpixel */
98 #undef HAVE_WS_XPIXEL
100 /* Define this if struct winsize has ws_ypixel */
101 #undef HAVE_WS_YPIXEL
103 /* Define this if struct sockaddr has sa_len */
104 #undef SOCKADDR_HAS_SA_LEN
106 /* Define to isoc_realloc if you have a broken realloc */
107 #undef BROKEN_REALLOC
108 #ifdef BROKEN_REALLOC
109 #define realloc(X, Y) isoc_realloc((X), (Y))
110 #define isoc_realloc(X, Y) ((X) ? realloc((X), (Y)) : malloc(Y))
111 #endif
113 #undef VOID_RETSIGTYPE
115 #ifdef VOID_RETSIGTYPE
116 #define SIGRETURN(x) return
117 #else
118 #define SIGRETURN(x) return (RETSIGTYPE)(x)
119 #endif
121 /* Define if you have a readline compatible library */
122 #undef HAVE_READLINE
124 #define RCSID(msg) \
125 static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
127 #undef PROTOTYPES
129 /* Maximum values on all known systems */
130 #define MaxHostNameLen (64+4)
131 #define MaxPathLen (1024+4)
133 #if defined(HAVE_SGTTY_H) && defined(__NeXT__)
134 #define SGTTY
135 #endif
137 /* telnet stuff ----------------------------------------------- */
139 /* define this if you have kerberos 4 */
140 #undef KRB4
142 /* define this if you want to use the KDC as a kaserver */
143 #undef KASERVER
145 /* define this if you have kerberos 5 */
146 #undef KRB5
148 /* define this if you want encryption */
149 #undef ENCRYPTION
151 /* define this if you want authentication */
152 #undef AUTHENTICATION
154 #if defined(ENCRYPTION) && !defined(AUTHENTICATION)
155 #define AUTHENTICATION 1
156 #endif
158 /* Set this if you want des encryption */
159 #undef DES_ENCRYPTION
161 /* Set this to the default system lead string for telnetd
162 * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
163 * %v=os-version, %t=tty, %h=hostname, %d=date and time
165 #undef USE_IM
167 /* define this if you want diagnostics in telnetd */
168 #undef DIAGNOSTICS
170 /* define this if you want support for broken ENV_{VALUE,VAR} systems */
171 #undef ENV_HACK
173 /* */
174 #undef OLD_ENVIRON
176 /* Used with login -p */
177 #undef LOGIN_ARGS
179 /* Define if there are working stream ptys */
180 #undef STREAMSPTY
182 /* set this to a sensible login */
183 #ifndef LOGIN_PATH
184 #define LOGIN_PATH BINDIR "/login"
185 #endif
187 /* operating system kludges ahead */
188 #undef SunOS