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:
parent
04958cbaf2
commit
eee3e94669
@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user