There is no embedded. httpd-2.2 included apr, apr-util. httpd-2.4 by vote of the PMC excluded apr, apr-util, so you might be imagining things. Or RM's are doing some goofy things.
On Wed, Feb 19, 2014 at 9:34 PM, Tom Browder <tom.brow...@gmail.com> wrote: > On Wed, Feb 19, 2014 at 9:40 PM, William A. Rowe Jr. <wmr...@gmail.com> wrote: >> First insight, did you ./config openssl, or ./config shared? It seems near > > No option which I think means static. > >> impossible to use static openssl. apr-util configure will fail since >> pkgconfig isn't consulted properly. httpd configure would also likely fail >> for redundant symbols. >> >> Second insight - apr-util version 1.5 includes openssl libs. Once you are >> linking against both apr-util and openssl, you can't choose a different >> openssl. You will need to build apr-util against the -same- openssl. > > I used the embedded apr, apr-util so its built with apache. > >> Third insight - apr-util links to ldap, as does mod_authnz_ldap. >> libldap/liblber link to openssl. Again, quite likely the system library. >> So, rebuild the openldap project as well against your newly built openssl. >> >> Or you can configure apr-util --without-ldap and httpd sans >> --enable-[authnz-]ldap > I didn't select ldap, but I'll add --without-ldap > >> >> FTR I am betting dollars to donuts you are trying to use a static, not >> shared build of openssl. Please, don't do that :) > > Okay! > > Thanks! > > -Tom