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

patch 8.1.0866: build file dependencies are outdated

Problem:    Build file dependencies are outdated. (John Little)
Solution:   Run "make proto" and "make depend".
This commit is contained in:
Bram Moolenaar
2019-02-01 20:42:22 +01:00
parent 895d966e34
commit 1c321dcee9
5 changed files with 21 additions and 16 deletions

View File

@@ -260,15 +260,15 @@
# define SUN_SYSTEM
#endif
/* if we're compiling in C++ (currently only KVim), the system
/* If we're compiling in C++ (currently only KVim), the system
* headers must have the correct prototypes or nothing will build.
* conversely, our prototypes might clash due to throw() specifiers and
* Conversely, our prototypes might clash due to throw() specifiers and
* cause compilation failures even though the headers are correct. For
* a concrete example, gcc-3.2 enforces exception specifications, and
* glibc-2.2.5 has them in their system headers.
*/
#if !defined(__cplusplus) && defined(UNIX) \
&& !defined(MACOS_X) /* MACOS_X doesn't yet support osdef.h */
&& !defined(MACOS_X) /* MACOS_X doesn't yet support osdef.h */
# include "auto/osdef.h" /* bring missing declarations in */
#endif
@@ -2583,6 +2583,9 @@ long elapsed(struct timeval *start_tv);
# define ELAPSED_TICKCOUNT
# define ELAPSED_INIT(v) v = GetTickCount()
# define ELAPSED_FUNC(v) elapsed(v)
# ifdef PROTO
typedef int DWORD;
# endif
typedef DWORD elapsed_T;
# ifndef PROTO
long elapsed(DWORD start_tick);