我正在尝试在Oracle 12 HTTP Server中使用mod_auth_cas。然而,甲骨文在其无限的wizdumb中已经删除了mod_ssl并且随之而来的是它自己的ossl。所以现在我的mod_auth_cas不起作用,因为它与openSSL链接。 (我得到一个“未定义的符号SSL_connect”错误)
查看代码(https://github.com/Jasig/mod_auth_cas/tree/master/src),我看到了:
#include <openssl/crypto.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
我知道我可以通过gcc编译器静态链接它,但是它使用Makefile而我绝不是(我是一个Java人)我有能力在makefile中执行此操作。
所以我的问题是:
OR
OR
感谢您的任何提示!
答案 0 :(得分:1)