diff options
author | erw7 <erw7.github@gmail.com> | 2019-08-06 12:44:22 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2019-08-06 12:44:22 +0900 |
commit | d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94 (patch) | |
tree | e52b3cf2fafbef6310ff82bb15e78bc90b124190 /src/nvim/version.c | |
parent | 067a39ba854cc02a750911ead968a744b2769aac (diff) | |
download | rneovim-d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94.tar.gz rneovim-d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94.tar.bz2 rneovim-d6f15ccc3c7ce04ff79c82dd8ea003f67c82ba94.zip |
remove DYNAMIC_ICONV
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r-- | src/nvim/version.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 33b2a05cbb..f3326beb4c 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -52,12 +52,8 @@ static char *features[] = { "-acl", #endif -#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV) -# ifdef DYNAMIC_ICONV -"+iconv/dyn", -# else +#if defined(HAVE_ICONV) "+iconv", -# endif #else "-iconv", #endif |