Maybe this is old hat, but:
I ran into the message fixme:crypt:RSA_CPAcquireContext You have to install libcrypto.so and development headers in order to use crypto API while running an app. Looking at the code, it's only issued if wine's configure can't find /usr/include/openssl/ssl.h. But I have that file! Digging deeper, I saw that ssl.h includes krb5.h, which isn't on the standard include path.
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=82369 explains the issue. It looks like configure.ac needs to be modified as described in that bug report to check for pkgconfig-openssl, and use it if present to guess the cflags needed to use openssl:
$ pkg-config openssl --cflags -I/usr/kerberos/include
A workaround seems to be to configure like this: ./configure CFLAGS="-I /usr/kerberos/include " This happily sets HAVE_OPENSSL_SSL_H in include/config.h. - Dan