I am trying to install Subversion with Apache support. I installed apr, apr-utils, neon, and OpenSSL with the --ena
I've run into this in a couple of other non-openssl scenarios, and I've found that this is generally related to not having shared libraries turned on.
Adding --enable-shared to your configure line seems to fix it.
I figured out that the problem was with the openssl install. Reinstalling openssl with enable-shared worked.
I solve it with adding hidden attribute to OPENSSL_ia32cap_P in crypto\cryptolib.h and recompile.
extern unsigned int OPENSSL_ia32cap_P[] __attribute__ ((visibility ("hidden")));