# HG changeset patch # User Bram Moolenaar # Date 1430814316 -7200 # Node ID 932370264f0f67bc4d05bc8d34421d5dd83d0f75 # Parent a784dfdc4467b15a07db2bc131bf7efcf3750c33 patch 7.4.726 Problem: Cannot build GvimExt. Solution: Set APPVER to 5.0. (KF Leong) diff --git a/src/GvimExt/Makefile b/src/GvimExt/Makefile --- a/src/GvimExt/Makefile +++ b/src/GvimExt/Makefile @@ -4,7 +4,9 @@ # TARGETOS=BOTH -APPVER=4.0 +!ifndef APPVER +APPVER=5.0 +!endif !if "$(DEBUG)" != "yes" NODEBUG = 1 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 */ /**/ + 726, +/**/ 725, /**/ 724,