Skip to content

Commit bfe9b11

Browse files
committed
updated for version 7.4.030
Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
1 parent 2a05336 commit bfe9b11

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/GvimExt/Make_cyg.mak

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ endif
3131
ifeq ($(CROSS),yes)
3232
DEL = rm
3333
ifeq ($(MINGWOLD),yes)
34-
CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks
34+
CXXFLAGS := -O2 -fvtable-thunks
3535
else
36-
CXXFLAGS := -O2 -mno-cygwin
36+
CXXFLAGS := -O2
3737
endif
3838
else
39-
CXXFLAGS := -O2 -mno-cygwin
39+
CXXFLAGS := -O2
4040
ifneq (sh.exe, $(SHELL))
4141
DEL = rm
4242
else

src/Make_cyg.mak

+1-3
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 Apr 22
3+
# Last updated by Dan Sharp. Last Change: 2013 Sep 19
44
#
55
# Also read INSTALLpc.txt!
66
#
@@ -439,8 +439,6 @@ endif
439439
##############################
440440
ifeq (yes, $(USEDLL))
441441
DEFINES += -D_MAX_PATH=256 -D__CYGWIN__
442-
else
443-
INCLUDES += -mno-cygwin
444442
endif
445443

446444
##############################

src/version.c

+2
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+
30,
741743
/**/
742744
29,
743745
/**/

src/xxd/Make_cyg.mak

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ifeq (yes, $(USEDLL))
88
DEFINES =
99
LIBS = -lc
1010
else
11-
DEFINES = -mno-cygwin
11+
DEFINES =
1212
LIBS =
1313
endif
1414

0 commit comments

Comments
 (0)