Hi. This patch fix "fatal error U1052: file 'Win32.mak' not found" error Thanksfor great editor!
-- 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
diff -r c53344bacabf src/GvimExt/Makefile --- a/src/GvimExt/Makefile Thu Nov 15 21:28:22 2012 +0100 +++ b/src/GvimExt/Makefile Tue Nov 20 15:12:18 2012 +0100 @@ -10,7 +10,11 @@ NODEBUG = 1 !endif -!include <win32.mak> +!ifdef SDK_INCLUDE_DIR +!include $(SDK_INCLUDE_DIR)\Win32.mak +!else +!include <Win32.mak> +!endif all: gvimext.dll
