From: Alfons Hoogervorst Date: Sun, 2 Nov 2003 14:08:50 +0000 (+0000) Subject: * src/browseldap.c X-Git-Tag: rel_0_9_7~42 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=df211b3c4fc01b2bb0b315ed09a4108d51770949 * src/browseldap.c fix build bustage if not compiling ldap support --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 91c07bd1c..9b084d758 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-11-02 [alfons] 0.9.6claws64 + + * src/browseldap.c + fix build bustage if not compiling ldap support + 2003-11-01 [match] 0.9.6claws63 * po/POTFILES.in diff --git a/configure.ac b/configure.ac index 210a5ba88..f162a4d74 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=63 +EXTRA_VERSION=64 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/browseldap.c b/src/browseldap.c index d0d72f5a8..7192693b9 100644 --- a/src/browseldap.c +++ b/src/browseldap.c @@ -25,6 +25,8 @@ # include "config.h" #endif +#ifdef USE_LDAP + #include "defs.h" #include @@ -433,6 +435,8 @@ gboolean browseldap_entry( AddressDataSource *ds, const gchar *dn ) { return TRUE; } +#endif /* USE_LDAP */ + /* * End of Source. */