mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Detect presence of SSL_get_current_compression
Apparently we still build against OpenSSL so old that it doesn't have this function, so add an autoconf check for it to make the buildfarm happy. If the function doesn't exist, always return that compression is disabled, since presumably the actual compression functionality is always missing. For now, hardcode the function as present on MSVC, since we should hopefully be well beyond those old versions on that platform.
This commit is contained in:
@@ -420,6 +420,10 @@ extern void unsetenv(const char *name);
|
||||
extern void srandom(unsigned int seed);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_SSL_GET_CURRENT_COMPRESSION
|
||||
#define SSL_get_current_compression(x) 0
|
||||
#endif
|
||||
|
||||
/* thread.h */
|
||||
extern char *pqStrerror(int errnum, char *strerrbuf, size_t buflen);
|
||||
|
||||
|
Reference in New Issue
Block a user