]> git.sur5r.net Git - openldap/blob - acconfig.h
57dc4fc7d44aba81cc24b2ce7e4a735fa4f9bfd2
[openldap] / acconfig.h
1 /*
2  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted only
6  * as authorized by the OpenLDAP Public License.  A copy of this
7  * license is available at http://www.OpenLDAP.org/license.html or
8  * in file LICENSE in the top-level directory of the distribution.
9  */
10
11 #ifndef _LDAP_PORTABLE_H
12 #define _LDAP_PORTABLE_H
13
14 /* end of preamble */
15
16 @TOP@
17
18 /* define this if needed to get reentrant functions */
19 #ifndef REENTRANT
20 #undef REENTRANT
21 #endif
22 #ifndef _REENTRANT
23 #undef _REENTRANT
24 #endif
25
26 /* define this if needed to get threadsafe functions */
27 #ifndef THREADSAFE
28 #undef THREADSAFE
29 #endif
30 #ifndef _THREADSAFE
31 #undef _THREADSAFE
32 #endif
33 #ifndef THREAD_SAFE
34 #undef THREAD_SAFE
35 #endif
36 #ifndef _THREAD_SAFE
37 #undef _THREAD_SAFE
38 #endif
39
40 #ifndef _SGI_MP_SOURCE
41 #undef _SGI_MP_SOURCE
42 #endif
43
44 /* define this if TIOCGWINSZ is defined in sys/ioctl.h */
45 #undef GWINSZ_IN_SYS_IOCTL
46
47 /* These are defined in ldap_features.h */
48 /*
49         LDAP_API_FEATURE_X_OPENLDAP_REENTRANT
50         LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
51         LDAP_API_FEATURE_X_OPENLDAP_V2_DNS
52         LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
53 */
54
55 /* These are defined in lber_types.h */
56 /*
57         LBER_INT_T
58         LBER_LEN_T
59         LBER_SOCKET_T
60         LBER_TAG_T
61 */
62
63 /* define to character address type */
64 #undef caddr_t
65
66 /* define to signed size type */
67 #undef ssize_t
68
69 \f
70 /* Leave that blank line there!!  Autoheader needs it. */
71
72 @BOTTOM@
73
74 /* begin of postamble */
75
76 #ifdef _WIN32
77         /* don't suck in all of the win32 api */
78 #       define WIN32_LEAN_AND_MEAN
79 #endif
80
81 #ifndef __NEED_PROTOTYPES
82 /* force LDAP_P to always include prototypes */
83 #define __NEED_PROTOTYPES 1
84 #endif
85
86 #ifdef HAVE_STDDEF_H
87 #       include <stddef.h>
88 #endif
89
90 #if defined(LDAP_DEVEL) && !defined(LDAP_TEST)
91 #define LDAP_TEST
92 #endif
93 #if defined(LDAP_TEST) && !defined(LDAP_DEBUG)
94 #define LDAP_DEBUG
95 #endif
96
97 #include "ldap_cdefs.h"
98 #include "ldap_features.h"
99
100 #include "ac/assert.h"
101
102 #endif /* _LDAP_PORTABLE_H */