Skip to content

Commit

Permalink
patch 8.0.1297: +autoservername does not show enabled on MS-Windows
Browse files Browse the repository at this point in the history
Problem:    +autoservername does not show enabled on MS-Windows.
Solution:   Always define the flag on MS-Windows. (Ken Takata)
  • Loading branch information
brammool committed Nov 13, 2017
1 parent 1dcada1 commit 2392143
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/feature.h
Expand Up @@ -1172,7 +1172,13 @@
* when --servername is not passed on the command line.
*/
#if defined(FEAT_CLIENTSERVER) && !defined(FEAT_AUTOSERVERNAME)
# ifdef WIN3264
/* Always enabled on MS-Windows. */
# define FEAT_AUTOSERVERNAME
# else
/* Enable here if you don't use configure. */
/* # define FEAT_AUTOSERVERNAME */
# endif
#endif

/*
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -766,6 +766,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1297,
/**/
1296,
/**/
Expand Down

0 comments on commit 2392143

Please sign in to comment.