comparison src/feature.h @ 4133:36fd800b8c6c v7.3.819

updated for version 7.3.819 Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
author Bram Moolenaar <bram@vim.org>
date Thu, 14 Feb 2013 22:11:39 +0100
parents a8f5876e4981
children ff193256398a
comparison
equal deleted inserted replaced
4132:97c9942586a4 4133:36fd800b8c6c
387 #ifdef FEAT_NORMAL 387 #ifdef FEAT_NORMAL
388 # define FEAT_EVAL 388 # define FEAT_EVAL
389 # if defined(HAVE_FLOAT_FUNCS) || defined(WIN3264) || defined(MACOS) 389 # if defined(HAVE_FLOAT_FUNCS) || defined(WIN3264) || defined(MACOS)
390 # define FEAT_FLOAT 390 # define FEAT_FLOAT
391 # endif 391 # endif
392 #endif
393
394 /*
395 * +python and +python3 require FEAT_EVAL.
396 */
397 #if !defined(FEAT_EVAL) && (defined(FEAT_PYTHON3) || defined(FEAT_PYTHON))
398 # define FEAT_EVAL
392 #endif 399 #endif
393 400
394 /* 401 /*
395 * +profile Profiling for functions and scripts. 402 * +profile Profiling for functions and scripts.
396 */ 403 */