From bd6e10aea0988d487d7baf597b1efa25d37875a6 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 23 Dec 1998 04:18:50 +0000 Subject: [PATCH] Fix --disable-debug compiling problems. New -llber (and -lldap when implemented) logging requires LDAP_DEBUG_XXX levels always be defined. --- include/ldap_log.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/ldap_log.h b/include/ldap_log.h index d368b8f6a0..2959ed48e0 100644 --- a/include/ldap_log.h +++ b/include/ldap_log.h @@ -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 ) \ -- 2.39.5