0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.1.1532: build fails

Problem:    Build fails.
Solution:   Add missing changes.
This commit is contained in:
Bram Moolenaar
2019-06-14 23:14:45 +02:00
parent 0554fa478d
commit d2cea96f6c
2 changed files with 5 additions and 3 deletions

View File

@@ -777,6 +777,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 */
/**/
1532,
/**/ /**/
1531, 1531,
/**/ /**/

View File

@@ -2006,7 +2006,7 @@ typedef int sock_T;
# endif # endif
/* Info about selected text */ /* Info about selected text */
typedef struct VimClipboard typedef struct
{ {
int available; /* Is clipboard available? */ int available; /* Is clipboard available? */
int owned; /* Flag: do we own the selection? */ int owned; /* Flag: do we own the selection? */
@@ -2037,9 +2037,9 @@ typedef struct VimClipboard
int_u format; /* Vim's own special clipboard format */ int_u format; /* Vim's own special clipboard format */
int_u format_raw; /* Vim's raw text clipboard format */ int_u format_raw; /* Vim's raw text clipboard format */
# endif # endif
} VimClipboard; } Clipboard_T;
#else #else
typedef int VimClipboard; /* This is required for the prototypes. */ typedef int Clipboard_T; // This is required for the prototypes.
#endif #endif
/* Use 64-bit stat structure if available. */ /* Use 64-bit stat structure if available. */