Commit ae0cfacc4f13a392065cdfffc0e8fb2cca22f261

Raphael Kubo da Costa 2015-01-24T16:19:43

openssl: Add all required includes for AF_INET6 and in6_addr. This fixes the build at least on FreeBSD, where those types were not defined indirectly: src/openssl_stream.c:100:18: error: variable has incomplete type 'struct in6_addr' struct in6_addr addr6; ^ src/openssl_stream.c:100:9: note: forward declaration of 'struct in6_addr' struct in6_addr addr6; ^ src/openssl_stream.c:111:18: error: use of undeclared identifier 'AF_INET' if (p_inet_pton(AF_INET, host, &addr4)) { ^ src/unix/posix.h:31:40: note: expanded from macro 'p_inet_pton' ^ src/openssl_stream.c:115:18: error: use of undeclared identifier 'AF_INET6' if(p_inet_pton(AF_INET6, host, &addr6)) { ^ src/unix/posix.h:31:40: note: expanded from macro 'p_inet_pton' ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/openssl_stream.c b/src/openssl_stream.c
index 108ccfe..c02df0b 100644
--- a/src/openssl_stream.c
+++ b/src/openssl_stream.c
@@ -8,6 +8,9 @@
 #ifdef GIT_SSL
 
 #include <ctype.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
 
 #include "global.h"
 #include "posix.h"