Skip to content

Commit 6d68f63

Browse files
committed
updated for version 7.4.106
Problem: Can't build with Ruby using Cygwin. Solution: Fix library name in makefile. (Steve Hall)
1 parent b799e32 commit 6d68f63

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Make_cyg.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Makefile for VIM on Win32, using Cygnus gcc
3-
# Last updated by Dan Sharp. Last Change: 2013 Sep 19
3+
# Last updated by Dan Sharp. Last Change: 2013 Nov 28
44
#
55
# Also read INSTALLpc.txt!
66
#
@@ -272,7 +272,7 @@ ifeq (yes, $(DYNAMIC_RUBY))
272272
DEFINES += -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=\"$(RUBY_INSTALL_NAME).dll\"
273273
DEFINES += -DDYNAMIC_RUBY_VER=$(RUBY_VER)
274274
else
275-
EXTRA_LIBS += $(RUBY)/lib/$(RUBY_INSTALL_NAME).lib
275+
EXTRA_LIBS += $(RUBY)/lib/$(RUBY_INSTALL_NAME)
276276
endif
277277
endif
278278

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
106,
741743
/**/
742744
105,
743745
/**/

0 commit comments

Comments
 (0)