# HG changeset patch # User Bram Moolenaar # Date 1613068204 -3600 # Node ID 40fe7d8a3c9382e4ca53106c2741a2afd85fa314 # Parent b56544307168c0eab7d6707b7a450eff0e04bd18 patch 8.2.2500: build fails without the GUI feature Commit: https://github.com/vim/vim/commit/0bcadf14aa700c166c09f1800ed3de00b9598b39 Author: Bram Moolenaar Date: Thu Feb 11 19:18:58 2021 +0100 patch 8.2.2500: build fails without the GUI feature Problem: Build fails without the GUI feature. Solution: Add #ifdef. diff --git a/src/main.c b/src/main.c --- a/src/main.c +++ b/src/main.c @@ -1979,7 +1979,9 @@ command_line_scan(mparm_T *parmp) { Columns = 80; // need to init Columns info_message = TRUE; // use mch_msg(), not mch_errmsg() +#if defined(FEAT_GUI) && !defined(ALWAYS_USE_GUI) gui.starting = FALSE; // not starting GUI, will exit +#endif list_version(); msg_putchar('\n'); msg_didout = FALSE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2500, +/**/ 2499, /**/ 2498,