]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/heimdal/acconfig.h
This commit was generated by cvs2svn to compensate for changes in r59419,
[FreeBSD/FreeBSD.git] / crypto / heimdal / acconfig.h
1 @BOTTOM@
2
3 #undef BINDIR 
4 #undef LIBDIR
5 #undef LIBEXECDIR
6 #undef SBINDIR
7
8 #undef HAVE_INT8_T
9 #undef HAVE_INT16_T
10 #undef HAVE_INT32_T
11 #undef HAVE_INT64_T
12 #undef HAVE_U_INT8_T
13 #undef HAVE_U_INT16_T
14 #undef HAVE_U_INT32_T
15 #undef HAVE_U_INT64_T
16
17 #if defined(HAVE_FOUR_VALUED_KRB_PUT_INT) || !defined(KRB4)
18 #define KRB_PUT_INT(F, T, L, S) krb_put_int((F), (T), (L), (S))
19 #else
20 #define KRB_PUT_INT(F, T, L, S) krb_put_int((F), (T), (S))
21 #endif
22
23 #ifdef BROKEN_REALLOC
24 #define realloc(X, Y) isoc_realloc((X), (Y))
25 #define isoc_realloc(X, Y) ((X) ? realloc((X), (Y)) : malloc(Y))
26 #endif
27
28 #ifdef VOID_RETSIGTYPE
29 #define SIGRETURN(x) return
30 #else
31 #define SIGRETURN(x) return (RETSIGTYPE)(x)
32 #endif
33
34 #define RCSID(msg) \
35 static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
36
37 #undef PROTOTYPES
38
39 /* Maximum values on all known systems */
40 #define MaxHostNameLen (64+4)
41 #define MaxPathLen (1024+4)
42
43 #if defined(HAVE_SGTTY_H) && defined(__NeXT__)
44 #define SGTTY
45 #endif
46
47 /*
48  * Define NDBM if you are using the 4.3 ndbm library (which is part of
49  * libc).  If not defined, 4.2 dbm will be assumed.
50  */
51 #if defined(HAVE_DBM_FIRSTKEY)
52 #define NDBM
53 #endif
54
55 /* telnet stuff ----------------------------------------------- */
56
57 #if defined(ENCRYPTION) && !defined(AUTHENTICATION)
58 #define AUTHENTICATION 1
59 #endif
60
61 /* Set this to the default system lead string for telnetd 
62  * can contain %-escapes: %s=sysname, %m=machine, %r=os-release
63  * %v=os-version, %t=tty, %h=hostname, %d=date and time
64  */
65 #undef USE_IM
66
67 /* Used with login -p */
68 #undef LOGIN_ARGS
69
70 /* set this to a sensible login */
71 #ifndef LOGIN_PATH
72 #define LOGIN_PATH BINDIR "/login"
73 #endif
74
75 /* random defines */
76
77 /*
78  * Defining this enables lots of useful (and used) extensions on
79  * glibc-based systems such as Linux
80  */
81
82 #define _GNU_SOURCE
83
84 /*
85  * this assumes that KRB_C_BIGENDIAN is used.
86  * if we can find out endianess at compile-time, do so,
87  * otherwise WORDS_BIGENDIAN should already have been defined
88  */
89
90 #if ENDIANESS_IN_SYS_PARAM_H
91 #  include <sys/types.h>
92 #  include <sys/param.h>
93 #  if BYTE_ORDER == BIG_ENDIAN
94 #  define WORDS_BIGENDIAN 1
95 #  endif
96 #endif