opensuse源码安装vim74

先卸载掉原来的vim


1、下载并解压vim74的源码


2、cd 源码目录

3、./configure     --with-features=huge    \
        --enable-rubyinterp     \
        --enable-pythoninterp   \
        --with-python-config-dir=/usr/lib/python2.7-config             
        --enable-perlinterp             
        --enable-gui=gtk2 \
        --enable-cscope \
        --enable-gui=auto \
        -enable-multibyte  \
        --enable-xim \
        --enable-fontset \
        --with-x  \
        --prefix=/usr

4、make VIMRUNTIMEDIR=/usr/share/vim/vim74

5、sudo make install


注意,要生成GVIM 需要库 libxt-dev gtk2-devel ,在opensuse下直接用yast安装即可。

你可能感兴趣的:(opensuse源码安装vim74)