mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
configure generates ldap_features.h based from ldap_features.h.in LDAP_REFERRALS -> LDAP_API_FEATURE_OPENLDAP_V2_REFERRALS LDAP_DNS -> LDAP_API_FEATURE_OPENLDAP_V2_DNS
13 lines
239 B
C
13 lines
239 B
C
/*
|
|
* LDAP Features
|
|
*/
|
|
#ifndef _LDAP_FEATURES_H
|
|
#define _LDAP_FEATURES_H 1
|
|
|
|
/* LDAP v2 DNS */
|
|
#undef LDAP_API_FEATURE_X_OPENLDAP_V2_DNS
|
|
|
|
/* LDAP v2 Referrals */
|
|
#undef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
|
|
|
|
#endif /* LDAP_FEATURES */
|