diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-28 22:44:58 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-28 22:44:58 +0000 |
commit | 8cd06cabf3d33bd72b4fac7d49e95d2695a90aa8 (patch) | |
tree | d10eef0ee4ee842921b8bac967412d576c4155d2 /src/feature.h | |
parent | 4d01d630a52980e6fb548959a6c24c660dfbaf39 (diff) | |
download | vim-git-8cd06cabf3d33bd72b4fac7d49e95d2695a90aa8.tar.gz |
updated for version 7.0054
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h index 3173901b2..fa874ed7a 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1,4 +1,4 @@ -/* vi:set ts=8 sts=0 sw=8: +/* vi:set ts=8 sts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar * @@ -382,7 +382,9 @@ /* * +profile Profiling for functions and scripts. */ -#if defined(FEAT_HUGE) && defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) +#if defined(FEAT_HUGE) \ + && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \ + || defined(WIN3264)) # define FEAT_PROFILE #endif |