mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.1929: MS-Windows: problem loading Perl 5.32
Problem: MS-Windows: problem loading Perl 5.32. Solution: Define NO_THREAD_SAFE_LOCALE. (Ken Takata, closes #7234)
This commit is contained in:
parent
cd030c4b60
commit
0289065e41
@ -44,12 +44,13 @@
|
|||||||
# define PERL_NO_INLINE_FUNCTIONS
|
# define PERL_NO_INLINE_FUNCTIONS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Work around for using MSVC and ActivePerl 5.18. */
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
// Work around for using MSVC and ActivePerl 5.18.
|
||||||
# define __inline__ __inline
|
# define __inline__ __inline
|
||||||
|
|
||||||
// Work around for using MSVC and Strawberry Perl 5.30.
|
// Work around for using MSVC and Strawberry Perl 5.30.
|
||||||
# define __builtin_expect(expr, val) (expr)
|
# define __builtin_expect(expr, val) (expr)
|
||||||
|
// Work around for using MSVC and Strawberry Perl 5.32.
|
||||||
|
# define NO_THREAD_SAFE_LOCALE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1929,
|
||||||
/**/
|
/**/
|
||||||
1928,
|
1928,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user