diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2024-09-14 08:37:08 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2024-09-14 08:47:06 -0400 |
commit | bc46104fc9aa5254f98250cf2756552f92095ae9 (patch) | |
tree | f1e747ccb10eb9adca4f1d13b526951cab41272a | |
parent | fae55f0bb38504b3774fa50152d3c14d2f09aa15 (diff) | |
download | postgresql-bc46104fc9aa5254f98250cf2756552f92095ae9.tar.gz postgresql-bc46104fc9aa5254f98250cf2756552f92095ae9.zip |
Only define NO_THREAD_SAFE_LOCALE for MSVC plperl when required
Latest versions of Strawberry Perl define USE_THREAD_SAFE_LOCALE, and we
therefore get a handshake error when building against such instances.
The solution is to perform a test to see if USE_THREAD_SAFE_LOCALE is
defined and only define NO_THREAD_SAFE_LOCALE if it isn't.
Backpatch the meson.build fix back to release 16 and apply the same
logic to Mkvcbuild.pm in releases 12 through 16.
Original report of the issue from Muralikrishna Bandaru.
-rw-r--r-- | meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 4764b09266e..48620403514 100644 --- a/meson.build +++ b/meson.build @@ -1058,7 +1058,10 @@ if not perlopt.disabled() if cc.get_id() == 'msvc' # prevent binary mismatch between MSVC built plperl and Strawberry or # msys ucrt perl libraries - perl_ccflags += ['-DNO_THREAD_SAFE_LOCALE'] + perl_v = run_command(perl, '-V').stdout() + if not perl_v.contains('USE_THREAD_SAFE_LOCALE') + perl_ccflags += ['-DNO_THREAD_SAFE_LOCALE'] + endif endif endif |