On Tue, Nov 6, 2018 at 2:30 AM David Fishburn <[email protected]> wrote: > > I am having a hard time getting gvim to compile on Ubuntu 16.04 ...snip... > I can't really think what else to try to install to get the GUI support.
Try this: # First install package needed to build vim $ sudo apt-get build-dep vim-gnome # Then build your own vim from sources $ cd vim $ rm src/auto/config.cache $ ./configure --with-features=huge --enable-gui=gtk2 $ make - j8 $ make test $ sudo make install or configure with gtk3 with: $ ./configure --with-features=huge --enable-gui=gtk3 Regards Dominique -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
