Skip to content

Commit 24f9e49

Browse files
committed
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 <openssl/x509v3.h>, as there has long been in fe-secure-openssl.c. Discussion: https://postgr.es/m/1051867.1635720347@sss.pgh.pa.us
1 parent 9bacec1 commit 24f9e49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/libpq/be-secure-openssl.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@
3030
#endif
3131

3232
#include <openssl/ssl.h>
33-
#include <openssl/dh.h>
3433
#include <openssl/conf.h>
34+
#include <openssl/dh.h>
3535
#ifndef OPENSSL_NO_ECDH
3636
#include <openssl/ec.h>
3737
#endif
38+
#include <openssl/x509v3.h>
3839

3940
#include "common/openssl.h"
4041
#include "libpq/libpq.h"

0 commit comments

Comments
 (0)