diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-05-05 10:25:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-05-05 10:25:16 +0200 |
commit | 1fd3e30ce92117201b170c1ef83280035488fdfa (patch) | |
tree | 411803463b901e7dfb40b44d8e304d259a5a1cab /src/GvimExt | |
parent | 659c94d483b2fdad949c14a42cee96f99a66394b (diff) | |
download | vim-1fd3e30ce92117201b170c1ef83280035488fdfa.zip |
patch 7.4.726
Problem: Cannot build GvimExt.
Solution: Set APPVER to 5.0. (KF Leong)
Diffstat (limited to 'src/GvimExt')
-rw-r--r-- | src/GvimExt/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/GvimExt/Makefile b/src/GvimExt/Makefile index 5c598c1a2..16b17345d 100644 --- 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 |