On Wed, Apr 29, 2020 at 11:17 PM Bram Moolenaar <[email protected]> wrote: > Oops, forgot to diff against the clean file.
Indeed, patch 664 makes my compilation warnings disappear. This is one of the risks one runs when using a modified Makefile. Maybe you should set your configure arguments by means of environment variables (in the underlying shell) instead? That way your Makefile would stay "clean". Me too I'm sometimes absent-minded, but by sourcing an apropriate set of "export" statements I keep out of trouble with no changes to the "official" Makefile. For instance when compiling a Huge Vim I source the following script at shell startup. Of course it is not exactly what you need but I suppose you would know how to fit it to your own preferences: ##### Configure arguments for Huge Vim ##### 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_AUTOSERVE='--enable-autoservername' export CONF_OPT_FEAT='--with-features=huge' export CONF_ARGS2='--with-vim-name=vim-huge' export CONF_OPT_COMPBY='"[email protected]"' Best regards, avoid the epidemy, and let's hear of you soon, :-) 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAJkCKXumqjmR1T_OnOus6JNBjFjjVPDP1bXJnkvRvWtG6JHn0Q%40mail.gmail.com.
