diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-11-03 11:11:11 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-11-03 11:11:11 +0000 |
commit | 3f269675d47dead291679bde9268aef174f8a9b7 (patch) | |
tree | 4125dd9a82beb898e6776ba30c256851e473a0c4 /src/feature.h | |
parent | badfde1bfe756d529389bee7084341e4adbdf495 (diff) | |
download | vim-git-3f269675d47dead291679bde9268aef174f8a9b7.tar.gz |
updated for version 7.2-269v7.2.269
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/feature.h b/src/feature.h index ae1675035..ea2e5887d 100644 --- a/src/feature.h +++ b/src/feature.h @@ -844,10 +844,14 @@ /* #define DEBUG */ /* - * STARTUPTIME Time the startup process. Writes a "vimstartup" file - * with timestamps. + * STARTUPTIME Time the startup process. Writes a file with + * timestamps. */ -/* #define STARTUPTIME "vimstartup" */ +#if defined(FEAT_NORMAL) \ + && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \ + || defined(WIN3264)) +# define STARTUPTIME 1 +#endif /* * MEM_PROFILE Debugging of memory allocation and freeing. |