Reputation: 3338
I am trying to use mod_auth_cas in my Oracle 12 HTTP Server. However, Oracle, in its infinite wizdumb, has removed mod_ssl and gone with it's own ossl. So now my mod_auth_cas does not work as it is linked with openSSL. (I a getting an "undefined symbol SSL_connect" error)
Looking at the code (https://github.com/Jasig/mod_auth_cas/tree/master/src) I see this:
#include <openssl/crypto.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
I know I can statically link this through the gcc compiler, however it uses a Makefile and I am in no way (im a Java guy) I have the ability to do this in a makefile.
So my questions are:
OR
OR
Thanks for any tips!
Upvotes: 0
Views: 284
Reputation: 409136
Upvotes: 1