1
0
forked from aniani/vim

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.
This commit is contained in:
Bram Moolenaar
2013-02-14 22:11:39 +01:00
parent 707060e2ee
commit b2c5a5ac79
7 changed files with 78 additions and 68 deletions

View File

@@ -391,6 +391,13 @@
# endif
#endif
/*
* +python and +python3 require FEAT_EVAL.
*/
#if !defined(FEAT_EVAL) && (defined(FEAT_PYTHON3) || defined(FEAT_PYTHON))
# define FEAT_EVAL
#endif
/*
* +profile Profiling for functions and scripts.
*/