From b728ac98f23d7b32959ca26f1a40e843b7b969a3 Mon Sep 17 00:00:00 2001 From: Juan Manuel Guerrero Date: Wed, 2 Feb 2022 00:41:02 +0100 Subject: Fix builds with DJGPP CLA: trivial To get the master branch compiled with DJGPP some minor adjustments are required. They will have no impact on any other ports. The DJGPP port uses the Watt-32 library to provide the required network functionality and some of its headers need to be included. Neither DJGPP nor the Watt-32 library provide in_addr_t thus it must be provided as it is done for OPENSSL_SYS_WINDOWS in crypto/bio/b_addr.c. In the DJGPP section of include/internal/sockets.h the following Watt-32 headers must be added: - arpa/inet.h: to provide declaration of inet_ntoa required in crypto/bio/b_addr.c - netinet/tcp.h: to provide defintion of TCP_NODELAY required in crypto/bio/b_sock2.c Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/17623) (cherry picked from commit b9b211fcb6b9068ef1d8729a4971fbe693fd2cde) --- include/internal/sockets.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/internal/sockets.h b/include/internal/sockets.h index 39186efef2..7f3b8ea85d 100644 --- a/include/internal/sockets.h +++ b/include/internal/sockets.h @@ -30,6 +30,8 @@ # include # include # include +# include +# include # elif defined(_WIN32_WCE) && _WIN32_WCE<410 # define getservbyname _masked_declaration_getservbyname # endif -- cgit v1.2.3