mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.3978: build error when using dynamycally loaded Python 3
Problem: Build error when using dynamycally loaded Python 3. Solution: Adjust #ifdef.
This commit is contained in:
@@ -602,7 +602,7 @@ EXTERN char e_cscope_connection_str_not_founc[]
|
|||||||
EXTERN char e_error_reading_cscope_connection_nr[]
|
EXTERN char e_error_reading_cscope_connection_nr[]
|
||||||
INIT(= N_("E262: error reading cscope connection %d"));
|
INIT(= N_("E262: error reading cscope connection %d"));
|
||||||
#endif
|
#endif
|
||||||
#ifdef DYNAMIC_PYTHON
|
#if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3)
|
||||||
EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
|
EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
|
||||||
INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
|
INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
|
||||||
#endif
|
#endif
|
||||||
|
@@ -749,6 +749,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 */
|
||||||
|
/**/
|
||||||
|
3978,
|
||||||
/**/
|
/**/
|
||||||
3977,
|
3977,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user