I'm using Ubuntu. I performed the following commands in the vim source folder:
sudo apt-get build-dep vim
./configure --with-features=huge --enable-gui=gtk2 --enable-rubyinterp=yes --enable-pythoninterp=yes
make
sudo make install
I have found that related posts but fail in Ubuntu 13.04.
Here is the error after do the .configure
checking --enable-gui argument... no GUI support
How can I let the system to find the GUI library? I have tried to do
apt-get build-dep vim
The gui lib should be included, but no luck what else can I do?
I have also tried
--enable-gui=<auto, gtk, gtk2, gnome2>
All of them show the same error no GUI support...
More update and try
kithokit@12:39:06 ~ $ sudo apt-get build-dep vim-gtk
Reading package lists... Done
Building dependency tree
Reading state information... Done
Picking 'vim' as source package instead of 'vim-gtk'
0 upgraded, 0 newly installed, 0 to remove and 42 not upgraded.
vim-gtk can not be installed...
I have already installed build-dep vim, but also no luck to find the GUI library.