Skip to content

Commit d9e3c8d

Browse files
twata1demerphq
authored andcommitted
Fix warning "implicit declaration of function '_setjmpex'" using MinGW-w64
1 parent 0975980 commit d9e3c8d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,6 +1384,7 @@ Torsten Foertsch <[email protected]>
13841384
Torsten Schönfeld <[email protected]>
13851385
Trevor Blackwell <[email protected]>
13861386
Tsutomu IKEGAMI <[email protected]>
1387+
Tsuyoshi Watanabe <[email protected]>
13871388
Tuomas J. Lukka <[email protected]>
13881389
Tye McQueen <[email protected]>
13891390
Ulrich Habel <[email protected]>

dist/threads/lib/threads.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use 5.008;
55
use strict;
66
use warnings;
77

8-
our $VERSION = '2.32'; # remember to update version in POD!
8+
our $VERSION = '2.33'; # remember to update version in POD!
99
my $XS_VERSION = $VERSION;
1010
$VERSION = eval $VERSION;
1111

@@ -134,7 +134,7 @@ threads - Perl interpreter-based threads
134134
135135
=head1 VERSION
136136
137-
This document describes threads version 2.32
137+
This document describes threads version 2.33
138138
139139
=head1 WARNING
140140

dist/threads/threads.xs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# define setjmp(x) _setjmp(x)
1616
# endif
1717
# if defined(__MINGW64__)
18+
# include <intrin.h>
1819
# define setjmp(x) _setjmpex((x), mingw_getsp())
1920
# endif
2021
#endif

0 commit comments

Comments
 (0)