We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4441fc7 commit f0cd57fCopy full SHA for f0cd57f
meson.build
@@ -909,6 +909,12 @@ if not perlopt.disabled()
909
910
if host_system == 'windows'
911
perl_ccflags += ['-DPLPERL_HAVE_UID_GID']
912
+
913
+ if cc.get_id() == 'msvc'
914
+ # prevent binary mismatch between MSVC built plperl and Strawberry or
915
+ # msys ucrt perl libraries
916
+ perl_ccflags += ['-DNO_THREAD_SAFE_LOCALE']
917
+ endif
918
endif
919
920
message('CCFLAGS recommended by perl: @0@'.format(perl_ccflags_r))
0 commit comments