comparison src/feature.h @ 17446:dcc4120f8412 v8.1.1721

patch 8.1.1721: build failure with normal features without netbeans interface commit https://github.com/vim/vim/commit/63187f79327e30cdce7c89d35121b79452d80cc3 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 Jul 2019 19:15:04 +0200
parents 70f424551938
children f12745505a23
comparison
equal deleted inserted replaced
17445:c627aa4e52ae 17446:dcc4120f8412
1234 1234
1235 /* 1235 /*
1236 * +signs Allow signs to be displayed to the left of text lines. 1236 * +signs Allow signs to be displayed to the left of text lines.
1237 * Adds the ":sign" command. 1237 * Adds the ":sign" command.
1238 */ 1238 */
1239 #if defined(FEAT_BIG) || defined(FEAT_NETBEANS_INTG) 1239 #if defined(FEAT_BIG) || defined(FEAT_NETBEANS_INTG) || defined(FEAT_TEXT_PROP)
1240 # define FEAT_SIGNS 1240 # define FEAT_SIGNS
1241 # if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \ 1241 # if ((defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA)) \
1242 && defined(HAVE_X11_XPM_H)) \ 1242 && defined(HAVE_X11_XPM_H)) \
1243 || defined(FEAT_GUI_GTK) \ 1243 || defined(FEAT_GUI_GTK) \
1244 || (defined(MSWIN) && defined(FEAT_GUI)) 1244 || (defined(MSWIN) && defined(FEAT_GUI))