# HG changeset patch # User Christian Brabandt # Date 1444207505 -7200 # Node ID 43ac8dc380c7f6a08296cc230514ea17ceb65d29 # Parent 7271fdea3884b285d6ab60ad76aac9d734c71637 commit https://github.com/vim/vim/commit/094454fa708d3297db744f095cd2b7b155a8b6ad Author: Bram Moolenaar Date: Wed Oct 7 10:39:55 2015 +0200 patch 7.4.890 Problem: Build failure when using dynamic python but not python3. Solution: Adjust the #if to also include DYNAMIC_PYTHON3 and UNIX. diff --git a/src/if_python3.c b/src/if_python3.c --- a/src/if_python3.c +++ b/src/if_python3.c @@ -828,7 +828,7 @@ python3_end() --recurse; } -#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON)) || defined(PROTO) +#if (defined(DYNAMIC_PYTHON3) && defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON) && defined(UNIX)) || defined(PROTO) int python3_loaded() { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 890, +/**/ 889, /**/ 888,