From: Tom Lane Date: Tue, 2 Nov 2021 19:18:00 +0000 (-0400) Subject: Blind attempt to silence SSL compile failures on hamerkop. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=24f9e49e430b4173d75a570e06abef8e3fd12c5e;p=users%2Frhaas%2Fpostgres.git 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 --- diff --git a/src/backend/libpq/be-secure-openssl.c b/src/backend/libpq/be-secure-openssl.c index e3b02b12f9..51836321fb 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"