global: include sys/openssl.h for GIT_EXPORT of fn

The openssl setup function needs to be GIT_EXPORT'ed, be sure
to include the `sys/openssl.h` header so that it is appropriately
decorated as an export function.
This commit is contained in:
Edward Thomson 2014-12-23 16:40:01 -06:00
parent e8cd432123
commit 73f0278e5d

View File

@ -9,6 +9,7 @@
#include "hash.h" #include "hash.h"
#include "sysdir.h" #include "sysdir.h"
#include "git2/global.h" #include "git2/global.h"
#include "git2/sys/openssl.h"
#include "thread-utils.h" #include "thread-utils.h"