From 24f9e49e430b4173d75a570e06abef8e3fd12c5e Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 2 Nov 2021 15:18:00 -0400 Subject: [PATCH] Blind attempt to silence SSL compile failures on hamerkop. Buildfarm member hamerkop has been failing for the last few days with errors that look like OpenSSL's X509-related symbols have not been imported into be-secure-openssl.c. It's unclear why this should be, but let's try adding an explicit #include of , as there has long been in fe-secure-openssl.c. Discussion: https://postgr.es/m/1051867.1635720347@sss.pgh.pa.us --- src/backend/libpq/be-secure-openssl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/libpq/be-secure-openssl.c b/src/backend/libpq/be-secure-openssl.c index e3b02b12f93..51836321fbf 100644 --- a/src/backend/libpq/be-secure-openssl.c +++ b/src/backend/libpq/be-secure-openssl.c @@ -30,11 +30,12 @@ #endif #include -#include #include +#include #ifndef OPENSSL_NO_ECDH #include #endif +#include #include "common/openssl.h" #include "libpq/libpq.h"