From 73f0278e5dd9cdb52c46df73daee8c517bba72fe Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Tue, 23 Dec 2014 16:40:01 -0600 Subject: [PATCH] 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. --- src/global.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/global.c b/src/global.c index f79bfd353..fcbcbb176 100644 --- a/src/global.c +++ b/src/global.c @@ -9,6 +9,7 @@ #include "hash.h" #include "sysdir.h" #include "git2/global.h" +#include "git2/sys/openssl.h" #include "thread-utils.h"