]> git.sur5r.net Git - openldap/blob - include/ldap_features.h.in
Update copyright (including with or without modification clarification)
[openldap] / include / ldap_features.h.in
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2001 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted only as authorized by the OpenLDAP
8  * Public License.  A copy of this license is available at
9  * http://www.OpenLDAP.org/license.html or in file LICENSE in the
10  * top-level directory of the distribution.
11  */
12
13 /* 
14  * LDAP Features
15  */
16
17 #ifndef _LDAP_FEATURES_H
18 #define _LDAP_FEATURES_H 1
19
20 /* OpenLDAP API version macros */
21 #undef LDAP_VENDOR_VERSION
22 #undef LDAP_VENDOR_VERSION_MAJOR
23 #undef LDAP_VENDOR_VERSION_MINOR
24 #undef LDAP_VENDOR_VERSION_PATCH
25
26 /*
27 ** OpenLDAP reentrancy/thread-safeness should be dynamically
28 ** checked using ldap_get_option().
29 **
30 ** The -lldap implementation may or may not be:
31 **              LDAP_API_FEATURE_THREAD_SAFE
32 **
33 ** The preprocessor flag LDAP_API_FEATURE_X_OPENLDAP_REENTRANT can
34 ** be used to determine if -lldap is LDAP_API_FEATURE_THREAD_SAFE at
35 ** compile time.
36 **
37 ** The -lldap_r implementation is always THREAD_SAFE but
38 ** may also be:
39 **              LDAP_API_FEATURE_SESSION_THREAD_SAFE
40 **              LDAP_API_FEATURE_OPERATION_THREAD_SAFE
41 **
42 ** The preprocessor flag LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
43 ** can be used to determine if -lldap_r is available at compile
44 ** time.  You must define LDAP_THREAD_SAFE if and only if you
45 ** link with -lldap_r.
46 **
47 ** If you fail to define LDAP_THREAD_SAFE when linking with
48 ** -lldap_r or define LDAP_THREAD_SAFE when linking with -lldap,
49 ** provided header definations and declarations may be incorrect.
50 **
51 */
52
53 /* is -lldap reentrant or not */
54 #undef LDAP_API_FEATURE_X_OPENLDAP_REENTRANT
55
56 /* is threadsafe version of -lldap (ie: -lldap_r) *available* or not */
57 #undef LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
58
59 /* LDAP v2 Kerberos Bind */
60 #undef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
61
62 /* LDAP v2 Referrals */
63 #undef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
64
65 /* LDAP Server Side Sort. */
66 #define LDAP_API_FEATURE_SERVER_SIDE_SORT 1000
67
68 /* LDAP Virtual List View. */ 
69 #define LDAP_API_FEATURE_VIRTUAL_LIST_VIEW 1000
70
71 #endif /* LDAP_FEATURES */