0
0
mirror of https://github.com/vim/vim.git synced 2025-08-25 19:53:53 -04:00

patch 8.1.0106: build fails when HAVE_DATE_TIME is undefined

Problem:    Build fails when HAVE_DATE_TIME is undefined.
Solution:   Always define init_longVersion(). (Christian Brabandt,
            closes #3075)
This commit is contained in:
Bram Moolenaar 2018-06-24 14:44:46 +02:00
parent 04958cbaf2
commit eee3e94669

View File

@ -71,6 +71,12 @@ init_longVersion(void)
# endif # endif
#else #else
char *longVersion = VIM_VERSION_LONG; char *longVersion = VIM_VERSION_LONG;
void
init_longVersion(void)
{
// nothing to do
}
#endif #endif
static void list_features(void); static void list_features(void);
@ -783,6 +789,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
106,
/**/ /**/
105, 105,
/**/ /**/