時間があったのでコンパイルしました。Vim 7.3.967です。
ほとんど http://vim-jp.org/docs/build_linux.htmlの通りでよかったのですが、一点だけ。
よーしパパpython拡張つかっちゃうぞーって感じで、
Bash
./configure --with-features=huge --enable-pythoninterp --enable-fail-if-missing
とすると
Bash
checking Python version... 2.7
checking Python is 2.2 or better... yep
checking Python's install prefix... /usrchecking Python's execution prefix... /usr
checking Python's configuration directory... can't find it!
configure: error: could not configure python
となってしまいます。
たぶんubuntu側が設定変えたんですかね?
ubuntuのpython設定ディレクトリは、普通にaptで入れた場合/usr/lib/python2.7/config-i386-linux-gnuにあるようなので、
Bash
./configure --with-features=huge --enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config-i386-linux-gnu --enable-fail-if-missing
でうまく通りました。