mirror of
https://github.com/vim/vim.git
synced 2025-10-01 04:54:07 -04:00
patch 8.2.1655: cannot build with Strawberry Perl 5.32.0
Problem: Cannot build with Strawberry Perl 5.32.0. Solution: Use Perl_sv_2pvbyte_flags. (closes #6921)
This commit is contained in:
@@ -241,6 +241,9 @@ typedef int perl_key;
|
|||||||
# else
|
# else
|
||||||
# define Perl_sv_2pv dll_Perl_sv_2pv
|
# define Perl_sv_2pv dll_Perl_sv_2pv
|
||||||
# endif
|
# endif
|
||||||
|
# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
|
||||||
|
# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
|
||||||
|
# endif
|
||||||
# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
|
# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
|
||||||
# define Perl_sv_bless dll_Perl_sv_bless
|
# define Perl_sv_bless dll_Perl_sv_bless
|
||||||
# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
|
# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
|
||||||
@@ -397,6 +400,9 @@ static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
|
|||||||
static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
|
static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
|
||||||
# endif
|
# endif
|
||||||
static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
|
static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
|
||||||
|
# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
|
||||||
|
static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN*, I32);
|
||||||
|
# endif
|
||||||
static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
|
static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
|
||||||
# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
|
# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
|
||||||
static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
|
static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
|
||||||
@@ -553,6 +559,9 @@ static struct {
|
|||||||
{"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
|
{"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
|
||||||
# endif
|
# endif
|
||||||
{"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
|
{"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
|
||||||
|
# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
|
||||||
|
{"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
|
||||||
|
# endif
|
||||||
# ifdef PERL589_OR_LATER
|
# ifdef PERL589_OR_LATER
|
||||||
{"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
|
{"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
|
||||||
{"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
|
{"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
1655,
|
||||||
/**/
|
/**/
|
||||||
1654,
|
1654,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user