aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-06-04 12:01:50 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2012-06-04 12:01:50 +0100
commit0153ba9a0dbed83fa98281f4d1ad34ad08e379b5 (patch)
treef57e46a4c00f3d78379a891c0514b47dcda64952 /configure
parentc43f4886bf2e0c94dca1ac69ac7415e21f59d066 (diff)
Drop the LDAP stuff that was never even close to finished.
There was actually a branch where LDAP support was more or less in a usable state, but there were still some unsolved problems including the fact that every setting has its own LDAP schema entry, which would mean lots of maintenance overhead for pretty much every BitlBee release. :-( Instead, we'll just stick to the XML format everywhere and just store it in different ways.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure34
1 files changed, 0 insertions, 34 deletions
diff --git a/configure b/configure
index 697a33bd..52aa863a 100755
--- a/configure
+++ b/configure
@@ -38,7 +38,6 @@ otr=0
skype=0
events=glib
-ldap=0
ssl=auto
arch=`uname -s`
@@ -317,23 +316,6 @@ EOF
fi;
}
-detect_ldap()
-{
- TMPFILE=$(mktemp /tmp/bitlbee-configure.XXXXXX)
- if $CC -o $TMPFILE -shared -lldap 2>/dev/null >/dev/null; then
- cat<<EOF>>Makefile.settings
-EFLAGS+=-lldap
-CFLAGS+=
-EOF
- ldap=1
- rm -f $TMPFILE
- ret=1
- else
- ldap=0
- ret=0
- fi
-}
-
RESOLV_TESTCODE='
#include <sys/types.h>
#include <netinet/in.h>
@@ -469,22 +451,6 @@ fi
STORAGES="xml"
-if [ "$ldap" = "auto" ]; then
- detect_ldap
-fi
-
-if [ "$ldap" = 0 ]; then
- echo "#undef WITH_LDAP" >> config.h
-elif [ "$ldap" = 1 ]; then
- echo
- echo 'LDAP support is a work in progress and does NOT work AT ALL right now.'
- echo
- exit 1
-
- echo "#define WITH_LDAP 1" >> config.h
- STORAGES="$STORAGES ldap"
-fi
-
for i in $STORAGES; do
STORAGE_OBJS="$STORAGE_OBJS storage_$i.o"
done