mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.4.030
Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
This commit is contained in:
@@ -31,12 +31,12 @@ endif
|
|||||||
ifeq ($(CROSS),yes)
|
ifeq ($(CROSS),yes)
|
||||||
DEL = rm
|
DEL = rm
|
||||||
ifeq ($(MINGWOLD),yes)
|
ifeq ($(MINGWOLD),yes)
|
||||||
CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks
|
CXXFLAGS := -O2 -fvtable-thunks
|
||||||
else
|
else
|
||||||
CXXFLAGS := -O2 -mno-cygwin
|
CXXFLAGS := -O2
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
CXXFLAGS := -O2 -mno-cygwin
|
CXXFLAGS := -O2
|
||||||
ifneq (sh.exe, $(SHELL))
|
ifneq (sh.exe, $(SHELL))
|
||||||
DEL = rm
|
DEL = rm
|
||||||
else
|
else
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Makefile for VIM on Win32, using Cygnus gcc
|
# Makefile for VIM on Win32, using Cygnus gcc
|
||||||
# Last updated by Dan Sharp. Last Change: 2013 Apr 22
|
# Last updated by Dan Sharp. Last Change: 2013 Sep 19
|
||||||
#
|
#
|
||||||
# Also read INSTALLpc.txt!
|
# Also read INSTALLpc.txt!
|
||||||
#
|
#
|
||||||
@@ -439,8 +439,6 @@ endif
|
|||||||
##############################
|
##############################
|
||||||
ifeq (yes, $(USEDLL))
|
ifeq (yes, $(USEDLL))
|
||||||
DEFINES += -D_MAX_PATH=256 -D__CYGWIN__
|
DEFINES += -D_MAX_PATH=256 -D__CYGWIN__
|
||||||
else
|
|
||||||
INCLUDES += -mno-cygwin
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
##############################
|
##############################
|
||||||
|
@@ -738,6 +738,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
30,
|
||||||
/**/
|
/**/
|
||||||
29,
|
29,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -8,7 +8,7 @@ ifeq (yes, $(USEDLL))
|
|||||||
DEFINES =
|
DEFINES =
|
||||||
LIBS = -lc
|
LIBS = -lc
|
||||||
else
|
else
|
||||||
DEFINES = -mno-cygwin
|
DEFINES =
|
||||||
LIBS =
|
LIBS =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user