mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-28 11:55:03 +03:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -30,11 +30,12 @@ | |||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #include <openssl/ssl.h> | #include <openssl/ssl.h> | ||||||
| #include <openssl/dh.h> |  | ||||||
| #include <openssl/conf.h> | #include <openssl/conf.h> | ||||||
|  | #include <openssl/dh.h> | ||||||
| #ifndef OPENSSL_NO_ECDH | #ifndef OPENSSL_NO_ECDH | ||||||
| #include <openssl/ec.h> | #include <openssl/ec.h> | ||||||
| #endif | #endif | ||||||
|  | #include <openssl/x509v3.h> | ||||||
|  |  | ||||||
| #include "common/openssl.h" | #include "common/openssl.h" | ||||||
| #include "libpq/libpq.h" | #include "libpq/libpq.h" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user