diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-02-18 17:05:29 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-02-18 17:05:29 +0000 |
commit | 5c5a586d73330f3f3f2c1b0d6d9f1caddfb79850 (patch) | |
tree | 175067b6f4b48ff7ce208ed9baa56fa84badf8c8 | |
parent | a3a37787188b68d17549e4db1ac1561cf7541979 (diff) |
configure script tweaks.
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -17,7 +17,7 @@ plugindir='$prefix/lib/bitlbee/' includedir='$prefix/include/bitlbee/' libevent='/usr/' pidfile='/var/run/bitlbee.pid' -ipcsocket='/var/run/bitlbee' +ipcsocket='/var/run/bitlbee.sock' pcdir='$prefix/lib/pkgconfig' msn=1 @@ -106,7 +106,6 @@ MANDIR=$mandir DATADIR=$datadir PLUGINDIR=$plugindir CONFIG=$config -IPCSOCKET=$ipcsocket INCLUDEDIR=$includedir PCDIR=$pcdir @@ -338,6 +337,11 @@ 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 |