|
Karsten Hopp |
da4248 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
da4248 |
Subject: Patch 7.2.399 (extra)
|
|
Karsten Hopp |
da4248 |
Fcc: outbox
|
|
Karsten Hopp |
da4248 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
da4248 |
Mime-Version: 1.0
|
|
Karsten Hopp |
da4248 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
da4248 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
da4248 |
------------
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
Patch 7.2.399 (extra, after 7.2.388)
|
|
Karsten Hopp |
da4248 |
Problem: Cannot compile on MingW.
|
|
Karsten Hopp |
da4248 |
Solution: Move ifneq to separate line. (Vlad Sandrini, Dominique Pelle)
|
|
Karsten Hopp |
da4248 |
Files: src/Make_ming.mak
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
*** ../vim-7.2.398/src/Make_ming.mak 2010-03-10 13:19:28.000000000 +0100
|
|
Karsten Hopp |
da4248 |
--- src/Make_ming.mak 2010-03-17 17:23:31.000000000 +0100
|
|
Karsten Hopp |
da4248 |
***************
|
|
Karsten Hopp |
da4248 |
*** 215,226 ****
|
|
Karsten Hopp |
da4248 |
ifndef RUBY_PLATFORM
|
|
Karsten Hopp |
da4248 |
ifeq ($(RUBY_VER), 16)
|
|
Karsten Hopp |
da4248 |
RUBY_PLATFORM = i586-mswin32
|
|
Karsten Hopp |
da4248 |
! else ifneq ("X$(wildcard, $(RUBY)/lib/ruby/$(RUBY_VER_LONG)/i386-mingw32)", X)
|
|
Karsten Hopp |
da4248 |
RUBY_PLATFORM = i386-mingw32
|
|
Karsten Hopp |
da4248 |
else
|
|
Karsten Hopp |
da4248 |
RUBY_PLATFORM = i386-mswin32
|
|
Karsten Hopp |
da4248 |
endif
|
|
Karsten Hopp |
da4248 |
endif
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
ifndef RUBY_INSTALL_NAME
|
|
Karsten Hopp |
da4248 |
ifeq ($(RUBY_VER), 16)
|
|
Karsten Hopp |
da4248 |
--- 215,228 ----
|
|
Karsten Hopp |
da4248 |
ifndef RUBY_PLATFORM
|
|
Karsten Hopp |
da4248 |
ifeq ($(RUBY_VER), 16)
|
|
Karsten Hopp |
da4248 |
RUBY_PLATFORM = i586-mswin32
|
|
Karsten Hopp |
da4248 |
! else
|
|
Karsten Hopp |
da4248 |
! ifneq ($(wildcard $(RUBY)/lib/ruby/$(RUBY_VER_LONG)/i386-mingw32),)
|
|
Karsten Hopp |
da4248 |
RUBY_PLATFORM = i386-mingw32
|
|
Karsten Hopp |
da4248 |
else
|
|
Karsten Hopp |
da4248 |
RUBY_PLATFORM = i386-mswin32
|
|
Karsten Hopp |
da4248 |
endif
|
|
Karsten Hopp |
da4248 |
endif
|
|
Karsten Hopp |
da4248 |
+ endif
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
ifndef RUBY_INSTALL_NAME
|
|
Karsten Hopp |
da4248 |
ifeq ($(RUBY_VER), 16)
|
|
Karsten Hopp |
da4248 |
*** ../vim-7.2.398/src/version.c 2010-03-17 16:54:51.000000000 +0100
|
|
Karsten Hopp |
da4248 |
--- src/version.c 2010-03-17 17:23:40.000000000 +0100
|
|
Karsten Hopp |
da4248 |
***************
|
|
Karsten Hopp |
da4248 |
*** 683,684 ****
|
|
Karsten Hopp |
da4248 |
--- 683,686 ----
|
|
Karsten Hopp |
da4248 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
da4248 |
+ /**/
|
|
Karsten Hopp |
da4248 |
+ 399,
|
|
Karsten Hopp |
da4248 |
/**/
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
--
|
|
Karsten Hopp |
da4248 |
Life is a gift, living is an art. (Bram Moolenaar)
|
|
Karsten Hopp |
da4248 |
|
|
Karsten Hopp |
da4248 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
da4248 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
da4248 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
da4248 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|