diff options
Diffstat (limited to 'src/nvim/version.c')
| -rw-r--r-- | src/nvim/version.c | 20 | 
1 files changed, 12 insertions, 8 deletions
| diff --git a/src/nvim/version.c b/src/nvim/version.c index 3ca0b254f4..4b4d28dcc2 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -47,21 +47,25 @@ char *version_cflags = "Compilation: " NVIM_VERSION_CFLAGS;  static char *features[] = {  #ifdef HAVE_ACL    "+acl", -#else  // ifdef HAVE_ACL +#else    "-acl", -#endif  // ifdef HAVE_ACL +#endif  #if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)  # ifdef DYNAMIC_ICONV    "+iconv/dyn", -# else  // ifdef DYNAMIC_ICONV +# else    "+iconv", -# endif  // ifdef DYNAMIC_ICONV -#else  // if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) -       //    ||defined(DYNAMIC_ICONV) +# endif +#else    "-iconv", -#endif  // if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) -        //    || defined(DYNAMIC_ICONV) +#endif + +#ifdef HAVE_JEMALLOC +  "+jemalloc", +#else +  "-jemalloc", +#endif    NULL  }; | 
