Skip to content

Commit 3c0c8c0

Browse files
committed
Allow for enabling of USE_IMP_SYS in Win32 unthreaded builds.
Enabled by merging of Perl/perl5#23178
1 parent 39daf7c commit 3c0c8c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/GetCurrentThreadId.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use Config qw(%Config);
33
use Test;
44
use Win32;
55

6-
my $fork_emulation = $Config{ccflags} =~ /PERL_IMPLICIT_SYS/;
6+
my $fork_emulation = defined($Config{useithreads});
77

88
my $tests = $fork_emulation ? 4 : 2;
99
plan tests => $tests;

0 commit comments

Comments
 (0)