Bug #6204
Updated by Matthieu CERDA almost 10 years ago
We used to have on 3.0: <pre> export LD_LIBRARY_PATH="/opt/rudder/lib" ; CPPFLAGS="-I/opt/rudder/include" ; export LDFLAGS="-L/opt/rudder/lib" ; export LIBS="-L/opt/rudder/lib" ; cd SOURCES/openldap-source && ./configure --prefix=/opt/rudder --libdir=/opt/rudder/lib/ldap --enable-dynamic --enable-debug --enable-modules --enable-hdb=mod --enable-monitor=mod --enable-dynlist=mod --with-cyrus-sasl </pre> We tried to remove the exports and use this instead: <pre> cd SOURCES/openldap-source && LD_LIBRARY_PATH="/opt/rudder/lib" CPPFLAGS="-I/opt/rudder/include" LDFLAGS="-L/opt/rudder/lib" LIBS="-L/opt/rudder/lib" ./configure --prefix=/opt/rudder --libdir=/opt/rudder/lib/ldap --enable-dynamic --enable-debug --enable-modules --enable-hdb=mod --enable-monitor=mod --enable-dynlist=mod --with-cyrus-sasl </pre> But the configure fails, not finding BDB :( Time to be a little more intelligent by specifying where you can find put the BDB headers. old one again :)