diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-19 20:34:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-19 20:34:59 +0100 |
commit | 40e280d949fa26e33f69c4bf80ccc0b70f2e13f6 (patch) | |
tree | 109970e03f15ef98867cbf23f10d3b8a4917e9f9 /src/proto.h | |
parent | 7221fce8b395972b57aea5f36ba2844fe1d4c259 (diff) | |
download | vim-git-40e280d949fa26e33f69c4bf80ccc0b70f2e13f6.tar.gz |
patch 8.0.1321: can't build huge version with Athenav8.0.1321
Problem: Can't build huge version with Athena. (Mark Kelly)
Solution: Move including beval.h to before structs.h. Include beval.pro like
other proto files.
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/proto.h b/src/proto.h index a60d3c895..5513746dd 100644 --- a/src/proto.h +++ b/src/proto.h @@ -201,7 +201,9 @@ void qsort(void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void /* Ugly solution for "BalloonEval" not being defined while it's used in some * .pro files. */ -# ifndef FEAT_BEVAL +# ifdef FEAT_BEVAL +# include "beval.pro" +# else # define BalloonEval int # endif |