* src/main/timestr.c: debugging not meant for end-user
[freeradius.git] / acconfig.h
1 /*
2
3 acconfig.h - template used by autoheader to create config.h.in
4 config.h.in - used by autoconf to create config.h
5 config.h - created by autoconf; contains defines generated by autoconf
6
7 */
8
9 @TOP@
10
11 /* Do we have the crypt function ? */
12 #undef HAVE_CRYPT
13
14 /* Do we have shadow support? */
15 #undef HAVE_GETSPNAM
16
17 /* Make dictionary case-independant */
18 #undef WITH_DICT_NOCASE
19
20 /* Use USR-style vendor specific attributes */
21 #undef ATTRIB_NMC
22
23 /* Include support for Ascend binary filter attributes */
24 #undef ASCEND_BINARY
25
26 /* socklen_t is generally 'int' on systems which don't use it */
27 #undef socklen_t
28
29 /* uint8_t should be the canonical 'octet' for network traffic */
30 #undef uint8_t
31
32 /* uint32_t should be the canonical 'network integer' */
33 #undef uint32_t
34
35 /* Define if prototype for strncasecmp needed */
36 #undef NEED_DECLARATION_STRNCASECMP
37
38 /* Define if prototype for strcasecmp needed */
39 #undef NEED_DECLARATION_STRCASECMP
40
41 /* Define if prototype for inet_aton needed */
42 #undef NEED_DECLARATION_INET_ATON
43
44 /* Define if prototype for gethostname needed */
45 #undef NEED_DECLARATION_GETHOSTNAME
46
47 /* Define if prototype for setlinebuf needed */
48 #undef NEED_DECLARATION_SETLINEBUF
49
50 /* Define if prototype for getusershell needed */
51 #undef NEED_DECLARATION_GETUSERSHELL
52
53 /* Define if prototype for endusershell needed */
54 #undef NEED_DECLARATION_ENDUSERSHELL
55
56 /* use a pool of threads to handle requests, instead of spawning threads? */
57 #undef WITH_THREAD_POOL
58
59 /* Include SNMP subagent */
60 #undef WITH_SNMP
61
62 /* Include user collision code*/
63 #undef WITH_USERCOLLIDE
64
65 /* Define if you have the <snmp.h> header file.  */
66 #undef HAVE_SNMP_H
67
68 /* Define if you have the <snmp_impl.h> header file.  */
69 #undef HAVE_SNMP_IMPL_H
70
71 /* Define if you have the <asn1.h> header file.  */
72 #undef HAVE_ASN1_H
73
74 /* Define if you have the snmp library (-lsnmp).  */
75 #undef HAVE_LIBSNMP
76
77 /* define if you have the <libpq_fe.h> header file.  */
78 #undef HAVE_LIBPQ_FE_H
79
80 /* define if you have the <postgres.h> header file.  */
81 #undef HAVE_POSTGRES_H
82
83 /* define this if we have the <regex.h> header file */
84 #undef HAVE_REGEX_H
85
86 /* define this if we have REG_EXTENDED (from <regex.h>) */
87 #undef HAVE_REG_EXTENDED
88
89 /* define this if you have the <mysql.h> header file */
90 #undef HAVE_MYSQL_H
91
92 /* define this if you have the <isql.h> header file */
93 #undef HAVE_ISQL_H
94
95 /* define this if you have the <oci.h> header file */
96 #undef HAVE_OCI_H
97
98
99 @BOTTOM@
100
101 #ifndef HAVE_SNPRINTF
102 #define HAVE_LOCAL_SNPRINTF
103 #define snprintf lrad_snprintf
104 #endif
105
106 #ifndef HAVE_VSNPRINTF
107 #define HAVE_LOCAL_SNPRINTF
108 #define vsnprintf lrad_vsnprintf
109 #endif