1
0
forked from aniani/vim

patch 8.2.1597: the channel source file is too big

Problem:    The channel source file is too big.
Solution:   Move job related code to a new source file.
This commit is contained in:
Bram Moolenaar
2020-09-05 15:48:51 +02:00
parent 7dfc5ce7cf
commit 8b5866ded6
15 changed files with 2002 additions and 1960 deletions

View File

@@ -2143,9 +2143,9 @@ if test "$enable_netbeans" = "yes"; then
fi
if test "$enable_channel" = "yes"; then
AC_DEFINE(FEAT_JOB_CHANNEL)
CHANNEL_SRC="channel.c"
CHANNEL_SRC="job.c channel.c"
AC_SUBST(CHANNEL_SRC)
CHANNEL_OBJ="objects/channel.o"
CHANNEL_OBJ="objects/job.o objects/channel.o"
AC_SUBST(CHANNEL_OBJ)
fi