summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-16 13:42:24 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-16 13:42:24 +0100
commitacd58ef676bb9559ac0f635f66b62f4602929c87 (patch)
treea5bd30b1589d7b60140fb562ab127c272dac6cc7 /src
parentd46ae142aa9452e99576b5e923de974704e3c896 (diff)
patch 7.4.1332v7.4.1332
Problem: Problem using Python3 when compiled with MingW. Solution: Define PYTHON3_HOME as a wide character string. (Yasuhiro Matsumoto)
Diffstat (limited to 'src')
-rw-r--r--src/Make_cyg_ming.mak2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index 1c1ee8c649..6a2b91f6cf 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -264,7 +264,7 @@ ifndef DYNAMIC_PYTHON3_DLL
DYNAMIC_PYTHON3_DLL=python$(PYTHON3_VER).dll
endif
ifdef PYTHON3_HOME
-PYTHON3_HOME_DEF=-DPYTHON3_HOME=\"$(PYTHON3_HOME)\"
+PYTHON3_HOME_DEF=-DPYTHON3_HOME=L\"$(PYTHON3_HOME)\"
endif
ifeq (no,$(DYNAMIC_PYTHON3))
diff --git a/src/version.c b/src/version.c
index 688d2c5d00..4bdf98885f 100644
--- a/src/version.c
+++ b/src/version.c
@@ -748,6 +748,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1332,
+/**/
1331,
/**/
1330,