From: Christian Brabandt Date: Sat, 10 Jan 2026 16:43:43 +0000 (+0000) Subject: patch 9.1.2074: Compile error with Motif GUI X-Git-Tag: v9.1.2074^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b694561b4d29293d1cfb974ddc72e1599156c626;p=thirdparty%2Fvim.git patch 9.1.2074: Compile error with Motif GUI Problem: Compile error with Motif GUI (Tony Mechelynck, after v9.1.2072) Solution: Add ifdef FEAT_GUI_GTK Signed-off-by: Christian Brabandt --- diff --git a/src/gui.c b/src/gui.c index aeb46c5af5..8673ec8d84 100644 --- a/src/gui.c +++ b/src/gui.c @@ -152,7 +152,7 @@ gui_start(char_u *arg UNUSED) choose_clipmethod(); #endif -#ifdef FEAT_SOCKETSERVER +#if defined(FEAT_SOCKETSERVER) && defined(FEAT_GUI_GTK) // Install socket server listening socket if we are running it if (socket_server_valid()) gui_gtk_init_socket_server(); diff --git a/src/version.c b/src/version.c index 63b3aa15c4..19cfa47172 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2074, /**/ 2073, /**/