diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-09 20:30:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-09 20:30:27 +0100 |
commit | 009c7b2640b6e04c101118cc7d0dc5785f9aa116 (patch) | |
tree | 65e721f6f3a46df62c13d45e328cdf95ac8ed456 /src/gui_gtk_x11.c | |
parent | 4d0504019cc744a5122821f187dd3adfe536afff (diff) | |
download | vim-009c7b2640b6e04c101118cc7d0dc5785f9aa116.zip |
patch 8.0.0162: build error on Fedora 23
Problem: Build error on Fedora 23 with small features and gnome2.
Solution: Undefine ngettext(). (Hirohito Higashi)
Diffstat (limited to 'src/gui_gtk_x11.c')
-rw-r--r-- | src/gui_gtk_x11.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 514ac9e31..71bcd6a3a 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -35,6 +35,9 @@ # ifdef _ # undef _ # endif +# ifdef ngettext +# undef ngettext +# endif # ifdef N_ # undef N_ # endif |