Hi, 2014/10/13 Mon 12:45:37 UTC+9 KF Leong wrote: > When compiling using MinGW toolset with 'XPM=no' option, compilation will > fail and aborted. > > Attach patch to fix the issue.
Make_cyg.mak should also be fixed. (Actually, I want to merge Make_ming.mak and Make_cyg.mak into one file. They do almost same thing.) > (can't seem to attach file with the web interface for Google Groups, paste > the diff below...) :( I could. Regards, Ken Takata -- -- 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.
# HG changeset patch # Parent fe4c75eba025af4bce5af3e0a9e2e593ed6f04cb diff --git a/src/Make_cyg.mak b/src/Make_cyg.mak --- a/src/Make_cyg.mak +++ b/src/Make_cyg.mak @@ -485,7 +485,7 @@ USE_STDCPLUS = yes endif ############################## -ifdef XPM +ifneq ($(XPM),no) # Only allow XPM for a GUI build. DEFINES += -DFEAT_XPM_W32 INCLUDES += -I$(XPM)/include
