Patch 8.2.3978
Problem: Build error when using dynamycally loaded Python 3.
Solution: Adjust #ifdef.
Files: src/errors.h
*** ../vim-8.2.3977/src/errors.h 2022-01-01 21:59:11.030521935 +0000
--- src/errors.h 2022-01-02 01:02:38.908099887 +0000
***************
*** 602,608 ****
EXTERN char e_error_reading_cscope_connection_nr[]
INIT(= N_("E262: error reading cscope connection %d"));
#endif
! #ifdef DYNAMIC_PYTHON
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
--- 602,608 ----
EXTERN char e_error_reading_cscope_connection_nr[]
INIT(= N_("E262: error reading cscope connection %d"));
#endif
! #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
*** ../vim-8.2.3977/src/version.c 2022-01-01 21:59:11.038521915 +0000
--- src/version.c 2022-01-02 01:03:29.528061311 +0000
***************
*** 751,752 ****
--- 751,754 ----
{ /* Add new patch number below this line */
+ /**/
+ 3978,
/**/
--
hundred-and-one symptoms of being an internet addict:
184. You no longer ask prospective dates what their sign is, instead
your line is "Hi, what's your URL?"
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220102010537.744801C0A5B%40moolenaar.net.