Bug #6224
Updated by Matthieu CERDA almost 10 years ago
On Debian, we build slapd using these environment variables: <pre> LD_LIBRARY_PATH="/opt/rudder/lib" </pre> This is wrong, /opt/rudder/lib at compile time contains no libdb... it makes the OpenLDAP ./configure BDB header/lib version match check fail (not beeing able to find libdb-5.1.so It should be: <pre> LD_LIBRARY_PATH="$(CURDIR)/debian/tmp/opt/rudder/lib" LD_LIBRARY_PATH="/opt/rudder/lib:$(CURDIR)/debian/tmp/opt/rudder/lib" </pre>