New krb5_425_conv_principal.
[heimdal.git] / acconfig.h
blob03a0f644f6d02b686b9b12cea56b94aab22a821f
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 #undef ssize_t
17 #undef sig_atomic_t
19 /* Define this if struct utmp have ut_user */
20 #undef HAVE_UT_USER
22 /* Define this if struct utmp have ut_host */
23 #undef HAVE_UT_HOST
25 /* Define this if struct utmp have ut_addr */
26 #undef HAVE_UT_ADDR
28 /* Define this if struct utmp have ut_type */
29 #undef HAVE_UT_TYPE
31 /* Define this if struct utmp have ut_pid */
32 #undef HAVE_UT_PID
34 /* Define this if struct utmp have ut_id */
35 #undef HAVE_UT_ID
37 /* Define this if struct utmpx have ut_syslen */
38 #undef HAVE_UT_SYSLEN
40 /* define if you have h_errno */
41 #undef HAVE_H_ERRNO
43 /* define if you have h_errlist but not hstrerror */
44 #undef HAVE_H_ERRLIST
46 /* define if you have h_nerr but not hstrerror */
47 #undef HAVE_H_NERR
49 /* define if your system doesn't declare h_errlist */
50 #undef HAVE_H_ERRLIST_DECLARATION
52 /* define if your system doesn't declare h_nerr */
53 #undef HAVE_H_NERR_DECLARATION
55 /* define this if you need a declaration for h_errno */
56 #undef HAVE_H_ERRNO_DECLARATION
58 /* define if you need a declaration for optarg */
59 #undef HAVE_OPTARG_DECLARATION
61 /* define if you need a declaration for optind */
62 #undef HAVE_OPTIND_DECLARATION
64 /* define if you need a declaration for opterr */
65 #undef HAVE_OPTERR_DECLARATION
67 /* define if you need a declaration for optopt */
68 #undef HAVE_OPTOPT_DECLARATION
70 /* define if you need a declaration for __progname */
71 #undef HAVE___PROGNAME_DECLARATION
73 /* define if the system is missing a prototype for crypt() */
74 #undef NEED_CRYPT_PROTO
76 /* define if the system is missing a prototype for strtok_r() */
77 #undef NEED_STRTOK_R_PROTO
79 /* Define this if your `struct tm' has a field `tm_gmtoff' */
80 #undef HAVE_STRUCT_TM_TM_GMTOFF
82 /* define if getcwd() is broken (such as in SunOS) */
83 #undef BROKEN_GETCWD
85 /* Define this if you have a variable `timezone' */
86 #undef HAVE_TIMEZONE
88 /* Define this if struct winsize is declared in sys/termios.h */
89 #undef HAVE_STRUCT_WINSIZE
91 /* Define this if struct winsize has ws_xpixel */
92 #undef HAVE_WS_XPIXEL
94 /* Define this if struct winsize has ws_ypixel */
95 #undef HAVE_WS_YPIXEL
97 /* Define this if struct sockaddr has sa_len */
98 #undef SOCKADDR_HAS_SA_LEN
100 /* Define to isoc_realloc if you have a broken realloc */
101 #undef BROKEN_REALLOC
102 #ifdef BROKEN_REALLOC
103 #define realloc(X, Y) isoc_realloc((X), (Y))
104 #define isoc_realloc(X, Y) ((X) ? realloc((X), (Y)) : malloc(Y))
105 #endif
107 #undef VOID_RETSIGTYPE
109 #ifdef VOID_RETSIGTYPE
110 #define SIGRETURN(x) return
111 #else
112 #define SIGRETURN(x) return (RETSIGTYPE)(x)
113 #endif
115 /* Define if you have a readline compatible library */
116 #undef HAVE_READLINE
118 #define RCSID(msg) \
119 static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
121 #undef PROTOTYPES
123 /* Maximum values on all known systems */
124 #define MaxHostNameLen (64+4)
125 #define MaxPathLen (1024+4)
127 /* telnet stuff ----------------------------------------------- */
129 /* define this if you have kerberos 4 */
130 #undef KRB4
132 /* define this if you have kerberos 5 */
133 #undef KRB5
135 /* define this if you want encryption */
136 #undef ENCRYPTION
138 /* define this if you want authentication */
139 #undef AUTHENTICATION
141 #if defined(ENCRYPTION) && !defined(AUTHENTICATION)
142 #define AUTHENTICATION 1
143 #endif
145 /* Set this if you want des encryption */
146 #undef DES_ENCRYPTION
148 /* Set this to the default system lead string for telnetd
149 * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
150 * %v=os-version, %t=tty, %h=hostname, %d=date and time
152 #undef USE_IM
154 /* define this if you want diagnostics in telnetd */
155 #undef DIAGNOSTICS
157 /* define this if you want support for broken ENV_{VALUE,VAR} systems */
158 #undef ENV_HACK
160 /* */
161 #undef OLD_ENVIRON
163 /* Used with login -p */
164 #undef LOGIN_ARGS
166 /* Define if there are working stream ptys */
167 #undef STREAMSPTY
169 /* set this to a sensible login */
170 #ifndef LOGIN_PATH
171 #define LOGIN_PATH BINDIR "/login"
172 #endif
174 /* operating system kludges ahead */
175 #undef SunOS