On Fri, 9 Jan 2004, Hamed Majnoonian wrote: > Dear Henrik, > > Thank you very much for your help. > I have searched my machine and I found following PATH: > > ################## > For ldap.h > > /usr/include/ldap.h > /usr/local/include/ldap.h > ################## > > ################## > For libldap.a > > /usr/local/lib/libldap.a > ################## > > Could you please give a clear guidance because I don't know what else should > I do?
Looks like your compiler does not look in /usr/local by default. After running configure edit helpers/basic_auth/LDAP/Makefile and add -I/usr/local/include to the INCLUDES = line, and -L/usr/local/lib to the LDADD = line before -lldap and the same thing in the external_acl/ldap_group/Makefile Regards Henrik
