mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
anticipate undefined symbols when compiling for 2.2
This commit is contained in:
parent
cb291bb940
commit
5697bed1f9
1 changed files with 11 additions and 0 deletions
|
|
@ -32,6 +32,17 @@
|
|||
/* FIXME: the code differs if SLAP_OPATTRS is defined or not;
|
||||
* SLAP_OPATTRS is not defined in 2.2 yet, while this overlay
|
||||
* expects HEAD code at least later than August 6, 2004. */
|
||||
/* FIXME: slap_anlist_no_attrs was introduced in 2.3; here it
|
||||
* is anticipated to allow using this overlay with 2.2. */
|
||||
|
||||
#if LDAP_VENDOR_VERSION_MINOR != X && LDAP_VENDOR_VERSION_MINOR < 3
|
||||
static AttributeName anlist_no_attrs[] = {
|
||||
{ BER_BVC( LDAP_NO_ATTRS ), NULL, 0, NULL },
|
||||
{ BER_BVNULL, NULL, 0, NULL }
|
||||
};
|
||||
|
||||
static AttributeName *slap_anlist_no_attrs = anlist_no_attrs;
|
||||
#endif
|
||||
|
||||
typedef struct dynlist_info {
|
||||
ObjectClass *dli_oc;
|
||||
|
|
|
|||
Loading…
Reference in a new issue