When trying to link a simple program using apr-util using libtool, I get numerous errors about gdbm (and db) functions not being found. It turns out that libaprutil.la's dependency_libs variable doesn't contain a bunch of needed stuff (such as -lgdbm -ldb, etc.) apr-util obviously knows about this, as it substitutes them correctly into APRUTIL_EXPORT_LIBS in export_vars.sh. Is there a reason we aren't doing a -lstuff when creating the libtool archive? This used to work.
-- Jon