|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.106
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.106
|
|
|
3ef2ca |
Problem: Can't build with Ruby using Cygwin.
|
|
|
3ef2ca |
Solution: Fix library name in makefile. (Steve Hall)
|
|
|
3ef2ca |
Files: src/Make_cyg.mak
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.105/src/Make_cyg.mak 2013-09-19 20:48:59.000000000 +0200
|
|
|
3ef2ca |
--- src/Make_cyg.mak 2013-11-28 16:29:52.000000000 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 1,6 ****
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
# Makefile for VIM on Win32, using Cygnus gcc
|
|
|
3ef2ca |
! # Last updated by Dan Sharp. Last Change: 2013 Sep 19
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
# Also read INSTALLpc.txt!
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
--- 1,6 ----
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
# Makefile for VIM on Win32, using Cygnus gcc
|
|
|
3ef2ca |
! # Last updated by Dan Sharp. Last Change: 2013 Nov 28
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
# Also read INSTALLpc.txt!
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 272,278 ****
|
|
|
3ef2ca |
DEFINES += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
|
|
|
3ef2ca |
DEFINES += -DDYNAMIC_RUBY_VER=$(RUBY_VER)
|
|
|
3ef2ca |
else
|
|
|
3ef2ca |
! EXTRA_LIBS += $(RUBY)/lib/$(RUBY_INSTALL_NAME).lib
|
|
|
3ef2ca |
endif
|
|
|
3ef2ca |
endif
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--- 272,278 ----
|
|
|
3ef2ca |
DEFINES += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
|
|
|
3ef2ca |
DEFINES += -DDYNAMIC_RUBY_VER=$(RUBY_VER)
|
|
|
3ef2ca |
else
|
|
|
3ef2ca |
! EXTRA_LIBS += $(RUBY)/lib/$(RUBY_INSTALL_NAME)
|
|
|
3ef2ca |
endif
|
|
|
3ef2ca |
endif
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.105/src/version.c 2013-11-28 14:36:24.000000000 +0100
|
|
|
3ef2ca |
--- src/version.c 2013-11-28 16:29:25.000000000 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 740,741 ****
|
|
|
3ef2ca |
--- 740,743 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 106,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
hundred-and-one symptoms of being an internet addict:
|
|
|
3ef2ca |
7. You finally do take that vacation, but only after buying a cellular modem
|
|
|
3ef2ca |
and a laptop.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|