Skip to content

Commit 2392143

Browse files
committed
patch 8.0.1297: +autoservername does not show enabled on MS-Windows
Problem: +autoservername does not show enabled on MS-Windows. Solution: Always define the flag on MS-Windows. (Ken Takata)
1 parent 1dcada1 commit 2392143

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

src/feature.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,13 @@
11721172
* when --servername is not passed on the command line.
11731173
*/
11741174
#if defined(FEAT_CLIENTSERVER) && !defined(FEAT_AUTOSERVERNAME)
1175+
# ifdef WIN3264
1176+
/* Always enabled on MS-Windows. */
1177+
# define FEAT_AUTOSERVERNAME
1178+
# else
1179+
/* Enable here if you don't use configure. */
11751180
/* # define FEAT_AUTOSERVERNAME */
1181+
# endif
11761182
#endif
11771183

11781184
/*

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,8 @@ static char *(features[]) =
766766

767767
static int included_patches[] =
768768
{ /* Add new patch number below this line */
769+
/**/
770+
1297,
769771
/**/
770772
1296,
771773
/**/

0 commit comments

Comments
 (0)