mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
a48b606a2f
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
14 lines
239 B
C
14 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 */
|