Date: Mon, 25 Mar 2002 04:20:07 -0800 (PST) From: Taoka Fumiyoshi <fmysh@quad.dyndns.org> To: freebsd-ports@FreeBSD.org Subject: Re: ports/35117: Undefined symbol "ldap_get_dn" when trying to start apache+mod_ssl-1.3.23+2.8.6. with www/auth_ldap Message-ID: <200203251220.g2PCK7445860@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/35117; it has been noted by GNATS. From: Taoka Fumiyoshi <fmysh@quad.dyndns.org> To: freebsd-gnats-submit@FreeBSD.org, eculp@encontacto.net Cc: Subject: Re: ports/35117: Undefined symbol "ldap_get_dn" when trying to start apache+mod_ssl-1.3.23+2.8.6. with www/auth_ldap Date: Mon, 25 Mar 2002 21:11:02 +0900 Here is a quick patch. I don't know why a dynamic linker can not find the libraries in detail. --- httpd.conf.bak Mon Mar 25 20:44:06 2002 +++ httpd.conf Mon Mar 25 20:46:39 2002 @@ -237,7 +237,9 @@ LoadModule setenvif_module libexec/apache/mod_setenvif.so <IfDefine SSL> LoadModule ssl_module libexec/apache/libssl.so -LoadModule ldap_module libexec/apache/auth_ldap.so +LoadFile /usr/local/lib/liblber.so +LoadFile /usr/local/lib/libldap.so +LoadModule auth_ldap_module libexec/apache/auth_ldap.so </IfDefine> # Reconstruction of the complete module list from all available modules @@ -280,7 +282,7 @@ AddModule mod_setenvif.c <IfDefine SSL> AddModule mod_ssl.c -AddModule mod_ldap.c +AddModule auth_ldap.c </IfDefine> # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203251220.g2PCK7445860>