summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2024-07-26 19:09:54 +0200
committerDaniel Gustafsson <dgustafsson@postgresql.org>2024-07-26 19:09:54 +0200
commitddd66a6295c5205a5ce46dc09bcbd0dae38c7a8d (patch)
treee257e6a48edd488442b2ddf46c0a1b8005dfeee8 /src
parent51c1b4fd1579b7a410c53c193ac4e20730cbdbc5 (diff)
Fix building with MSVC for TLS session disabling
Commit 274bbced85 omitted the required changes for the MSVC build system in v16 through v12. Per buildfarm animal hamerkop. Discussion: https://postgr.es/m/7919238F-723C-4113-9742-EBCE7A76A6B4@yesql.se
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/Solution.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 53d60dbd259..07cc7b7ba2a 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -363,6 +363,7 @@ sub GenerateFiles
HAVE_SETSID => undef,
HAVE_SHM_OPEN => undef,
HAVE_SPINLOCKS => 1,
+ HAVE_SSL_CTX_SET_NUM_TICKETS => undef,
HAVE_SRANDOM => undef,
HAVE_STDBOOL_H => 1,
HAVE_STDINT_H => 1,
@@ -554,6 +555,7 @@ sub GenerateFiles
|| ($digit1 >= '1' && $digit2 >= '1' && $digit3 >= '1'))
{
$define{HAVE_X509_GET_SIGNATURE_INFO} = 1;
+ $define{HAVE_SSL_CTX_SET_NUM_TICKETS} = 1;
}
# Symbols needed with OpenSSL 1.1.0 and above.