Geert, > I included in SET INCLUDE the path to my cygwin include headers that > contains inttypes.h but then I get the following error:
I'm not sure it's a good idea to mix cygwin and MSVC headers. Correct solution would be like patch below, although I didn't test it because Ruby wants MSVC 6.0. Any site where I can download builds for more recent MSVC? --- ../vim72-bak/src/Make_mvc.mak Fri May 14 23:24:24 2010 +0200 +++ ./src/Make_mvc.mak Sat May 15 12:47:44 2010 +0400 @@ -740,7 +740,7 @@ !message Ruby requested (version $(RUBY_VER)) - root dir is "$(RUBY)" CFLAGS = $(CFLAGS) -DFEAT_RUBY RUBY_OBJ = $(OUTDIR)\if_ruby.obj -RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" +RUBY_INC = /I "$(RUBY)\lib\ruby\$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)" /I "$(RUBY)\include\ruby-$(RUBY_VER_LONG)\$(RUBY_PLATFORM)" RUBY_LIB = $(RUBY)\lib\$(RUBY_INSTALL_NAME).lib # Do we want to load Ruby dynamically? !if "$(DYNAMIC_RUBY)" == "yes" -- 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
