# HG changeset patch # User Bram Moolenaar # Date 1641086103 -3600 # Node ID f78ad6ee739a761dae7d13af37528174149b2bad # Parent 614dcfac5c37da2e9e7855bbfd59321a841a86da patch 8.2.3978: build error when using dynamycally loaded Python 3 Commit: https://github.com/vim/vim/commit/6b1a99dfe33cf5a1d7f82febd81face85ac1b8a6 Author: Bram Moolenaar Date: Sun Jan 2 01:04:09 2022 +0000 patch 8.2.3978: build error when using dynamycally loaded Python 3 Problem: Build error when using dynamycally loaded Python 3. Solution: Adjust #ifdef. diff --git a/src/errors.h b/src/errors.h --- a/src/errors.h +++ b/src/errors.h @@ -602,7 +602,7 @@ EXTERN char e_cscope_connection_str_not_ EXTERN char e_error_reading_cscope_connection_nr[] INIT(= N_("E262: error reading cscope connection %d")); #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[] INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded.")); #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3978, +/**/ 3977, /**/ 3976,