How to compile a gvim from source using the latest version
Posted
by
Kit Ho
on Super User
See other posts from Super User
or by Kit Ho
Published on 2013-10-16T09:44:56Z
Indexed on
2013/10/24
3:58 UTC
Read the original article
Hit count: 524
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
Update:
sorry for not providing enough error msg
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 try 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...
© Super User or respective owner