Skip to content

Commit b984b80

Browse files
committed
patch 8.0.1098: build failure if libvterm installed
Problem: Build failure if libvterm installed on the system. (Oleh Hushchenkov) Solution: Change the CCCTERM argument order. (Ken Takata, closes vim#2080)
1 parent 49a613f commit b984b80

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,7 @@ objects/channel.o: channel.c
32993299
Makefile:
33003300
@echo The name of the makefile MUST be "Makefile" (with capital M)!!!!
33013301

3302-
CCCTERM = $(CCC) -Ilibvterm/include -DINLINE="" \
3302+
CCCTERM = $(CCC_NF) -Ilibvterm/include $(ALL_CFLAGS) -DINLINE="" \
33033303
-DVSNPRINTF=vim_vsnprintf \
33043304
-DIS_COMBINING_FUNCTION=utf_iscomposing_uint \
33053305
-DWCWIDTH_FUNCTION=utf_uint2cells

src/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
1098,
772774
/**/
773775
1097,
774776
/**/

0 commit comments

Comments
 (0)