On 26-12-11 10:55, Tony Mechelynck wrote:
Well, why not use a GTK2/Gnome2 Vim GUI? I use that on openSUSE Linux,
and it compiles like a breeze. I'm sure the needed development packages
exist on your Ubuntu distro just like they exist on my openSUSE. I've
seen Ubuntu/Debian users post a oneline apt-get build-dep command meant
to install all packages needed to compile gvim with GTK2/Gnome2 on their
systems, only I haven't remembered it since SuSE uses a different
package management system (the YaST GUI/cursesUI or the zypper CLI).
Below is a summary of the commands I use to compile the latest gVim 7.3
from source on Ubuntu 10.04 should you be interested (the commands come
from a shell script ~/bin/build-vim which I run once every few weeks to
stay up to date):
sudo apt-get build-dep vim-gnome
sudo apt-get install autoconf
hg clone https://vim.googlecode.com/hg/ vim-sources
cd vim-sources
export CONF_OPT_FEAT='--with-features=huge'
export CONF_OPT_GUI='--enable-gnome-check'
export CONF_OPT_MULTIBYTE='--enable-multibyte'
make -C src autoconf
make
sudo make install
- Peter
PS. I'm not sure you need the two lines referring to autoconf; feel free
to skip those and see if it works without :-). Also a heads up: The
build-dep line pulls in quite a lot of packages...
--
You received this message from the "vim_dev" 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