sudo apt-get build-dep vim
sudo apt-get build-dep vim-gtk
sudo apt-get install git
sudo apt-get install build-essentials
sudo apt-get install
vim-gnome
sudo apt-get install
libncursesw5-dev
sudo apt-get update
/var/tmp/user0/vim8_from_git/vim8# ./configure --enable-gui | grep gui
checking --enable-gui argument... no GUI support
/var/tmp/user0/vim8_from_git/vim8# apt build-dep vim
Reading package lists... Done
E: You must put some 'source' URIs in your sources.list
sudo apt-get update
If this does not fix the issue, edit /etc/apt/sources.list, e.g. using
sudo vim /etc/apt/sources.list
and ensure that the deb-src lines are not commented out.
sudo apt upgrade
sudo apt -get build-dep vim
sudo apt -get build-dep vim-gtk
I can't really think what else to try to install to get the GUI support.
Thanks,
David
--
--
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 vim_use+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
> I can't really think what else to try to install to get the GUI support.
In all that you didn't do
sudo apt-get build-dep vim-gnome
I booted into a xenial iso just now. This gives a vanilla, out-of-the-box xenial experience (almost), if a little slow. My old, trusty, "apt-get build-dep vim-gtk" gave errors. I used the settings app to enable all the boxes, let it update, followed Dominique's instructions and built vim with gtk2.
If the build-dep vim-gnome doesn't do the trick, maybe your sources.list has problems. The vanilla xenial's sources.list was, with comments stripped:
deb http://archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiverse
HTH, and regards, John Little
I just checked on an uncustomized instance of 16.04, and indeed /usr/local/bin was in the path and ahead of /usr/bin. If the path is not the problem, conceivably David used a terminal session that was started before the make install was run, and the shell had hashed the location of gvim, so didn't search the path to find the new gvim. In bash "hash -r" fixes this.
Regards, John Little