Skip to content

Commit ce3045e

Browse files
Fix building with MSVC for TLS session disabling
Commit 274bbce 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
1 parent 970cd5c commit ce3045e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/tools/msvc/Solution.pm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ sub GenerateFiles
363363
HAVE_SHM_OPEN => undef,
364364
HAVE_SOCKLEN_T => 1,
365365
HAVE_SPINLOCKS => 1,
366+
HAVE_SSL_CTX_SET_NUM_TICKETS => undef,
366367
HAVE_STDBOOL_H => 1,
367368
HAVE_STDINT_H => 1,
368369
HAVE_STDLIB_H => 1,
@@ -558,6 +559,7 @@ sub GenerateFiles
558559
|| ($digit1 >= '1' && $digit2 >= '1' && $digit3 >= '1'))
559560
{
560561
$define{HAVE_X509_GET_SIGNATURE_INFO} = 1;
562+
$define{HAVE_SSL_CTX_SET_NUM_TICKETS} = 1;
561563
}
562564

563565
# Symbols needed with OpenSSL 1.1.0 and above.

0 commit comments

Comments
 (0)