Removing OpenSSL dependency for plugins.

Compiling a plugin required having access to OpenSSL headers because
they were pulled in by Bro headers that the plugin had to include.
Removinng then OpenSSL dependency from those Bro headers.

I'm also reverting a4e5591e. This is a different fix for the same
problem, and reverting that commit gives us a test case. :-)
This commit is contained in:
Robin Sommer 2016-08-01 08:27:08 -07:00
parent c3a43274e4
commit d7c10ca7c3
7 changed files with 21 additions and 9 deletions

View file

@ -18,7 +18,8 @@ extern "C" {
}
#endif
#include <openssl/md5.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
extern "C" void OPENSSL_add_all_algorithms_conf(void);