[Date Prev][Date Next] [Chronological] [Thread] [Top]

Error building smbk5pwd: 'struct slap_op' has no member named 'o_log'



HI!

I'm trying to build the smbk5pwd overlay but I didn't succeed:

michael@nb2:~/src/openldap-OPENLDAP_REL_ENG_2_3/ldap/contrib/slapd-modules/smbk5pwd>
make
../../../libtool --mode=compile gcc -g -DDO_KRB5 -DDO_SAMBA
-I../../../include -I../../../servers/slapd -I/opt/heimdal/include  -c
smbk5pwd.c
 gcc -g -DDO_KRB5 -DDO_SAMBA -I../../../include -I../../../servers/slapd
-I/opt/heimdal/include -c smbk5pwd.c  -fPIC -DPIC -o .libs/smbk5pwd.o
smbk5pwd.c: In function 'smbk5pwd_exop_passwd':
smbk5pwd.c:383: error: 'struct slap_op' has no member named 'o_log'
smbk5pwd.c:383: error: 'struct slap_op' has no member named 'o_log'
smbk5pwd.c:390: error: 'struct slap_op' has no member named 'o_log'
smbk5pwd.c:390: error: 'struct slap_op' has no member named 'o_log'
make: *** [smbk5pwd.lo] Error 1

I already adjusted the paths to heimdal etc in Makefile (attached).
On my SUSE Linux system there's also an RPM installed with OpenLDAP
2.2.x libs. Could this interfere?

Ciao, Michael.

# $OpenLDAP: pkg/ldap/contrib/slapd-modules/smbk5pwd/Makefile,v 1.1 2004/04/02 11:06:38 hyc Exp $
# Copyright 2004 Howard Chu, Symas Corp. All Rights Reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted only as authorized by the OpenLDAP
# Public License.
#
# A copy of this license is available in the file LICENSE in the
# top-level directory of the distribution or, alternatively, at
# <http://www.OpenLDAP.org/license.html>.

LIBTOOL=../../../libtool
OPT=-g
CC=gcc

# Omit DO_KRB5 or DO_SAMBA if you don't want to support it.
DEFS=-DDO_KRB5 -DDO_SAMBA

HEIMDAL_INC=-I/opt/heimdal/include
SSL_INC=
LDAP_INC=-I../../../include -I../../../servers/slapd
INCS=$(LDAP_INC) $(HEIMDAL_INC) $(SSL_INC)

HEIMDAL_LIB=-L/opt/heimdal/lib -lkrb5 -lkadm5srv
SSL_LIB=-lcrypto
LDAP_LIB=-L../../../libraries/libldap_r -lldap_r -L../../../libraries/liblber -llber
LIBS=$(LDAP_LIB) $(HEIMDAL_LIB) $(SSL_LIB)

all:	smbk5pwd.la


smbk5pwd.lo:	smbk5pwd.c
	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(DEFS) $(INCS) -c $?

smbk5pwd.la:	smbk5pwd.lo
	$(LIBTOOL) --mode=link $(CC) $(OPT) -version-info 0:0:0 \
	-rpath /opt/openldap-OPENLDAP_REL_ENG_2_3/libexec/openldap -module -o $@ $? $(LIBS)