Skip to content

Commit

Permalink
neovim: add gettext-dev
Browse files Browse the repository at this point in the history
Fixes:

    [ 50%] Building C object src/nvim/CMakeFiles/nvim.dir/eval.c.o
    /vim/neovim-neovim/neovim-master/src/nvim/eval.c: In function 'f_foldtext':
    /vim/neovim-neovim/neovim-master/src/nvim/eval.c:8717:11: warning: implicit declaration of function 'ngettext' [-Wimplicit-function-declaration]
         txt = ngettext("+-%s%3ld line: ", "+-%s%3ld lines: ", count);
               ^~~~~~~~
    /vim/neovim-neovim/neovim-master/src/nvim/eval.c:8717:9: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
         txt = ngettext("+-%s%3ld line: ", "+-%s%3ld lines: ", count);
             ^
  • Loading branch information
blueyed committed Jun 12, 2017
1 parent 8959745 commit df77b58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/install_vim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ EOF
# Some of them will be installed already, but it is a good reference for
# what is required.
# luajit is required with Neomvim 0.2.1+ (previously only during build).
apk add libuv \
apk add gettext \
libuv \
libtermkey \
libvterm \
luajit \
Expand All @@ -154,6 +155,7 @@ EOF
ca-certificates \
cmake \
g++ \
gettext-dev \
gperf \
libtool \
libuv-dev \
Expand Down

0 comments on commit df77b58

Please sign in to comment.