From 40e280d949fa26e33f69c4bf80ccc0b70f2e13f6 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 19 Nov 2017 20:34:59 +0100 Subject: patch 8.0.1321: can't build huge version with Athena 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. --- src/proto.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/proto.h') 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 -- cgit v1.2.1