mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-17 14:00:30 +08:00
Fix --disable-debug compiling problems. New -llber (and -lldap when
implemented) logging requires LDAP_DEBUG_XXX levels always be defined.
This commit is contained in:
parent
2f5ef0d1a8
commit
bd6e10aea0
@ -17,18 +17,6 @@
|
||||
|
||||
LDAP_BEGIN_DECL
|
||||
|
||||
/* debugging stuff */
|
||||
#ifdef LDAP_DEBUG
|
||||
|
||||
#ifndef ldap_debug
|
||||
extern int ldap_debug;
|
||||
#endif /* !ldap_debug */
|
||||
|
||||
#ifdef LDAP_SYSLOG
|
||||
extern int ldap_syslog;
|
||||
extern int ldap_syslog_level;
|
||||
#endif /* LDAP_SYSLOG */
|
||||
|
||||
#define LDAP_DEBUG_TRACE 0x0001
|
||||
#define LDAP_DEBUG_PACKETS 0x0002
|
||||
#define LDAP_DEBUG_ARGS 0x0004
|
||||
@ -45,6 +33,18 @@ extern int ldap_syslog_level;
|
||||
#define LDAP_DEBUG_NONE 0x8000
|
||||
#define LDAP_DEBUG_ANY -1
|
||||
|
||||
/* debugging stuff */
|
||||
#ifdef LDAP_DEBUG
|
||||
|
||||
#ifndef ldap_debug
|
||||
extern int ldap_debug;
|
||||
#endif /* !ldap_debug */
|
||||
|
||||
#ifdef LDAP_SYSLOG
|
||||
extern int ldap_syslog;
|
||||
extern int ldap_syslog_level;
|
||||
#endif /* LDAP_SYSLOG */
|
||||
|
||||
/* this doesn't below as part of ldap.h */
|
||||
#ifdef LDAP_SYSLOG
|
||||
#define Debug( level, fmt, arg1, arg2, arg3 ) \
|
||||
|
Loading…
Reference in New Issue
Block a user