From 01cde7ff4c771f08edec72d3492d8a56a2b0f73b Mon Sep 17 00:00:00 2001 From: Foxe Chen Date: Tue, 23 Sep 2025 18:15:48 +0000 Subject: [PATCH] patch 9.1.1786: Compile error with clipboard Problem: Compile error with clipboard (lacyggoill, after v9.1.1784) Solution: Add $WAYLAND_SRC as dependency for clipboard.c in Makefile (Foxe Chen) closes: #18375 Signed-off-by: Foxe Chen Signed-off-by: Christian Brabandt --- src/Makefile | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index b2b7a83b85..c5697a2565 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3234,7 +3234,7 @@ objects/cindent.o: cindent.c objects/clientserver.o: clientserver.c $(CCC) -o $@ clientserver.c -objects/clipboard.o: clipboard.c +objects/clipboard.o: clipboard.c $(WAYLAND_SRC) $(CCC) -o $@ clipboard.c objects/cmdexpand.o: cmdexpand.c diff --git a/src/version.c b/src/version.c index 0525c2f3c9..4de35bef3f 100644 --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1786, /**/ 1785, /**/