mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 7.4.1170
Problem: Missing changes in src/Makefile, Filelist. Solution: Add the missing changes.
This commit is contained in:
4
Filelist
4
Filelist
@@ -13,6 +13,7 @@ SRC_ALL = \
|
|||||||
src/ascii.h \
|
src/ascii.h \
|
||||||
src/blowfish.c \
|
src/blowfish.c \
|
||||||
src/buffer.c \
|
src/buffer.c \
|
||||||
|
src/channel.c \
|
||||||
src/charset.c \
|
src/charset.c \
|
||||||
src/crypt.c \
|
src/crypt.c \
|
||||||
src/crypt_zip.c \
|
src/crypt_zip.c \
|
||||||
@@ -39,8 +40,8 @@ SRC_ALL = \
|
|||||||
src/gui_beval.h \
|
src/gui_beval.h \
|
||||||
src/hardcopy.c \
|
src/hardcopy.c \
|
||||||
src/hashtab.c \
|
src/hashtab.c \
|
||||||
src/keymap.h \
|
|
||||||
src/json.c \
|
src/json.c \
|
||||||
|
src/keymap.h \
|
||||||
src/macros.h \
|
src/macros.h \
|
||||||
src/main.c \
|
src/main.c \
|
||||||
src/mark.c \
|
src/mark.c \
|
||||||
@@ -114,6 +115,7 @@ SRC_ALL = \
|
|||||||
src/proto.h \
|
src/proto.h \
|
||||||
src/proto/blowfish.pro \
|
src/proto/blowfish.pro \
|
||||||
src/proto/buffer.pro \
|
src/proto/buffer.pro \
|
||||||
|
src/proto/channel.pro \
|
||||||
src/proto/charset.pro \
|
src/proto/charset.pro \
|
||||||
src/proto/crypt.pro \
|
src/proto/crypt.pro \
|
||||||
src/proto/crypt_zip.pro \
|
src/proto/crypt_zip.pro \
|
||||||
|
25
src/Makefile
25
src/Makefile
@@ -462,6 +462,10 @@ CClink = $(CC)
|
|||||||
# Uncomment this when you do not want the netbeans interface.
|
# Uncomment this when you do not want the netbeans interface.
|
||||||
#CONF_OPT_NETBEANS = --disable-netbeans
|
#CONF_OPT_NETBEANS = --disable-netbeans
|
||||||
|
|
||||||
|
# CHANNEL - inter process communication. Same conditions as NetBeans.
|
||||||
|
# Uncomment this when you do not want inter process communication.
|
||||||
|
#CONF_OPT_CHANNEL = --disable-channel
|
||||||
|
|
||||||
# SNIFF - Include support for SNiFF+.
|
# SNIFF - Include support for SNiFF+.
|
||||||
#CONF_OPT_SNIFF = --enable-sniff
|
#CONF_OPT_SNIFF = --enable-sniff
|
||||||
|
|
||||||
@@ -1536,7 +1540,8 @@ TAGS_SRC = *.c *.cpp if_perl.xs
|
|||||||
|
|
||||||
EXTRA_SRC = hangulin.c if_lua.c if_mzsch.c auto/if_perl.c if_perlsfio.c \
|
EXTRA_SRC = hangulin.c if_lua.c if_mzsch.c auto/if_perl.c if_perlsfio.c \
|
||||||
if_python.c if_python3.c if_tcl.c if_ruby.c if_sniff.c \
|
if_python.c if_python3.c if_tcl.c if_ruby.c if_sniff.c \
|
||||||
gui_beval.c workshop.c wsdebug.c integration.c netbeans.c \
|
gui_beval.c workshop.c wsdebug.c integration.c \
|
||||||
|
netbeans.c channel.c \
|
||||||
$(GRESOURCE_SRC)
|
$(GRESOURCE_SRC)
|
||||||
|
|
||||||
# Unittest files
|
# Unittest files
|
||||||
@@ -1552,8 +1557,10 @@ ALL_SRC = $(BASIC_SRC) $(ALL_GUI_SRC) $(UNITTEST_SRC) $(EXTRA_SRC)
|
|||||||
# Which files to check with lint. Select one of these three lines. ALL_SRC
|
# Which files to check with lint. Select one of these three lines. ALL_SRC
|
||||||
# checks more, but may not work well for checking a GUI that wasn't configured.
|
# checks more, but may not work well for checking a GUI that wasn't configured.
|
||||||
# The perl sources also don't work well with lint.
|
# The perl sources also don't work well with lint.
|
||||||
LINT_SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) $(PYTHON_SRC) $(PYTHON3_SRC) $(TCL_SRC) \
|
LINT_SRC = $(BASIC_SRC) $(GUI_SRC) $(HANGULIN_SRC) \
|
||||||
$(SNIFF_SRC) $(WORKSHOP_SRC) $(WSDEBUG_SRC) $(NETBEANS_SRC)
|
$(PYTHON_SRC) $(PYTHON3_SRC) $(TCL_SRC) \
|
||||||
|
$(SNIFF_SRC) $(WORKSHOP_SRC) $(WSDEBUG_SRC) \
|
||||||
|
$(NETBEANS_SRC) $(CHANNEL_SRC)
|
||||||
#LINT_SRC = $(SRC)
|
#LINT_SRC = $(SRC)
|
||||||
#LINT_SRC = $(ALL_SRC)
|
#LINT_SRC = $(ALL_SRC)
|
||||||
#LINT_SRC = $(BASIC_SRC)
|
#LINT_SRC = $(BASIC_SRC)
|
||||||
@@ -1621,6 +1628,7 @@ OBJ_COMMON = \
|
|||||||
$(OS_EXTRA_OBJ) \
|
$(OS_EXTRA_OBJ) \
|
||||||
$(WORKSHOP_OBJ) \
|
$(WORKSHOP_OBJ) \
|
||||||
$(NETBEANS_OBJ) \
|
$(NETBEANS_OBJ) \
|
||||||
|
$(CHANNEL_OBJ) \
|
||||||
$(WSDEBUG_OBJ)
|
$(WSDEBUG_OBJ)
|
||||||
|
|
||||||
OBJ = $(OBJ_COMMON) \
|
OBJ = $(OBJ_COMMON) \
|
||||||
@@ -1689,6 +1697,7 @@ PRO_AUTO = \
|
|||||||
gui_beval.pro \
|
gui_beval.pro \
|
||||||
workshop.pro \
|
workshop.pro \
|
||||||
netbeans.pro \
|
netbeans.pro \
|
||||||
|
channel.pro \
|
||||||
$(ALL_GUI_PRO) \
|
$(ALL_GUI_PRO) \
|
||||||
$(TCL_PRO)
|
$(TCL_PRO)
|
||||||
|
|
||||||
@@ -1731,7 +1740,8 @@ config auto/config.mk: auto/configure config.mk.in config.h.in
|
|||||||
$(CONF_OPT_CSCOPE) $(CONF_OPT_MULTIBYTE) $(CONF_OPT_INPUT) \
|
$(CONF_OPT_CSCOPE) $(CONF_OPT_MULTIBYTE) $(CONF_OPT_INPUT) \
|
||||||
$(CONF_OPT_OUTPUT) $(CONF_OPT_GPM) $(CONF_OPT_WORKSHOP) \
|
$(CONF_OPT_OUTPUT) $(CONF_OPT_GPM) $(CONF_OPT_WORKSHOP) \
|
||||||
$(CONF_OPT_SNIFF) $(CONF_OPT_FEAT) $(CONF_TERM_LIB) \
|
$(CONF_OPT_SNIFF) $(CONF_OPT_FEAT) $(CONF_TERM_LIB) \
|
||||||
$(CONF_OPT_COMPBY) $(CONF_OPT_ACL) $(CONF_OPT_NETBEANS) \
|
$(CONF_OPT_COMPBY) $(CONF_OPT_ACL) $(CONF_OPT_NETBEANS) \
|
||||||
|
$(CONF_OPT_CHANNEL) \
|
||||||
$(CONF_ARGS) $(CONF_OPT_MZSCHEME) $(CONF_OPT_PLTHOME) \
|
$(CONF_ARGS) $(CONF_OPT_MZSCHEME) $(CONF_OPT_PLTHOME) \
|
||||||
$(CONF_OPT_LUA) $(CONF_OPT_LUA_PREFIX) \
|
$(CONF_OPT_LUA) $(CONF_OPT_LUA_PREFIX) \
|
||||||
$(CONF_OPT_SYSMOUSE); \
|
$(CONF_OPT_SYSMOUSE); \
|
||||||
@@ -2896,6 +2906,9 @@ objects/wsdebug.o: wsdebug.c
|
|||||||
objects/netbeans.o: netbeans.c
|
objects/netbeans.o: netbeans.c
|
||||||
$(CCC) -o $@ netbeans.c
|
$(CCC) -o $@ netbeans.c
|
||||||
|
|
||||||
|
objects/channel.o: channel.c
|
||||||
|
$(CCC) -o $@ channel.c
|
||||||
|
|
||||||
Makefile:
|
Makefile:
|
||||||
@echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
|
@echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
|
||||||
|
|
||||||
@@ -3337,3 +3350,7 @@ objects/netbeans.o: netbeans.c vim.h auto/config.h feature.h os_unix.h \
|
|||||||
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
||||||
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
||||||
globals.h farsi.h arabic.h version.h
|
globals.h farsi.h arabic.h version.h
|
||||||
|
objects/channel.o: channel.c vim.h auto/config.h feature.h os_unix.h \
|
||||||
|
auto/osdef.h ascii.h keymap.h term.h macros.h option.h structs.h \
|
||||||
|
regexp.h gui.h gui_beval.h proto/gui_beval.pro ex_cmds.h proto.h \
|
||||||
|
globals.h farsi.h arabic.h version.h
|
||||||
|
@@ -741,6 +741,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 */
|
||||||
|
/**/
|
||||||
|
1170,
|
||||||
/**/
|
/**/
|
||||||
1169,
|
1169,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user