# HG changeset patch # User Bram Moolenaar # Date 1563642904 -7200 # Node ID dcc4120f841294dfadbc2c59e479a669410474b5 # Parent c627aa4e52ae3fa1ff926800281ebf669cbe7ec2 patch 8.1.1721: build failure with normal features without netbeans interface commit https://github.com/vim/vim/commit/63187f79327e30cdce7c89d35121b79452d80cc3 Author: Bram Moolenaar Date: Sat Jul 20 19:14:49 2019 +0200 patch 8.1.1721: build failure with normal features without netbeans interface Problem: Build failure with normal features without netbeans interface. Solution: Enable signs when using the text properties feature. diff --git a/src/feature.h b/src/feature.h --- a/src/feature.h +++ b/src/feature.h @@ -1236,7 +1236,7 @@ * +signs Allow signs to be displayed to the left of text lines. * Adds the ":sign" command. */ -#if defined(FEAT_BIG) || defined(FEAT_NETBEANS_INTG) +#if defined(FEAT_BIG) || defined(FEAT_NETBEANS_INTG) || defined(FEAT_TEXT_PROP) # define FEAT_SIGNS # if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \ && defined(HAVE_X11_XPM_H)) \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1721, +/**/ 1720, /**/ 1719,