Unlike what is said at line 343 of src/Makefile, --enable-gnome2-check is not recognized by configure. Nor does (AFAICT) --enable-gnome-check (without the 2) have any effect. It is possible to compile with Gnome2 though, but AFAICT this requires --enable-gui=gnome2, as mentioned at lines 369-370 of the same Makefile.
Here is my new script (tested) to set the environment variables for a gvim with GTK2+Gnome2. This script must be sourced, not executed, by the same bash shell which will then run make: export CONF_OPT_GUI='--enable-gui=gnome2' export CONF_OPT_PERL='--enable-perlinterp' export CONF_OPT_PYTHON='--enable-pythoninterp' export CONF_OPT_PYTHON3='--disable-python3interp' export CONF_OPT_TCL='--enable-tclinterp' # /usr/bin/tclsh (softlink) is correctly set export CONF_OPT_RUBY='--enable-rubyinterp' export CONF_OPT_LUA='--enable-luainterp' export CONF_OPT_MZSCHEME='--disable-mzschemeinterp' #export CONF_OPT_PLTHOME='--with-plthome=/usr/local/plt' export CONF_OPT_CSCOPE='--enable-cscope' export CONF_OPT_MULTIBYTE='--enable-multibyte' export CONF_OPT_TERMINAL='--enable-terminal' export CONF_OPT_FEAT='--with-features=huge' export CONF_OPT_COMPBY='"[email protected]"' Of course, if you people want to use it, you will have to modify at least the last line and possibly some others depending on your preferred features. Best regards, Tony. -- -- 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 --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
