- 论坛徽章:
- 0
|
hello,
I am developing a ldap client program with kerberos V5 authentication under CentOS 4.3. Heimdal 0.7.2 is used for KDC, and OpenLDAP 2.3.24 for heimdal's backend. Cyrus SASL 2.1.22, OpenSSL 0.9.8b and BerkeleyDB 4.4.20 are also used. I compile OpenLDAP as follow,
$env ol_enable_kbind=yes ./configure --prefix=/usr --localstatedir=/var/openldap --enable-syslog --enable-local --with-cyrus-sasl --with-threads --with-tls --with-kerberos --enable-crypt --enable-lmpasswd --enable-spasswd --enable-modules
--enable-hdb --enable-ldap --enable-monitor --enable-dyngroup --enable-proxycache
$make depend
$make
then error occurs,
...
make[3]: Entering directory `/home/xk/download/openldap-2.3.24/servers/slapd/back-bdb'
/bin/sh ../../..//libtool --tag=disable-shared --mode=compile cc -g -O2 -I../../../include -I../../../include -I.. -I./.. -c bind.c
cc -g -O2 -I../../../include -I../../../include -I.. -I./.. -c bind.c -o bind.o
bind.c: In function `bdb_bind':
bind.c:154: error: syntax error before "goto"
bind.c:161: error: syntax error before "goto"
bind.c:176: error: syntax error before "goto"
make[3]: *** [bind.lo] Error 1
make[3]: Leaving directory `/home/xk/download/openldap-2.3.24/servers/slapd/back-bdb'
make[2]: *** [.backend] Error 1
make[2]: Leaving directory `/home/xk/download/openldap-2.3.24/servers/slapd'
make[1]: *** [all-common] Error 1
make[1]: Leaving directory `/home/xk/download/openldap-2.3.24/servers'
make: *** [all-common] Error 1
Why?
If I don't want OpenLDAP compiled with kbind.o which includes symbol of ldap_kerberos_bind_s,
$./configure --prefix=/usr --localstatedir=/var/openldap --enable-syslog --enable-local --with-cyrus-sasl --with-threads --with-tls --with-kerberos --enable-crypt --enable-lmpasswd --enable-spasswd --enable-modules
--enable-hdb --enable-ldap --enable-monitor --enable-dyngroup --enable-proxycache
$make depend
$make
$make test
$make install
there will be no errors.
Some one else told me that compiled with kbind, OpenLDAP should be patched and autoconf redone. Is that true? How to do in detail?
Thanks. |
|