summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-28 22:44:58 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-28 22:44:58 +0000
commit8cd06cabf3d33bd72b4fac7d49e95d2695a90aa8 (patch)
treed10eef0ee4ee842921b8bac967412d576c4155d2 /src/feature.h
parent4d01d630a52980e6fb548959a6c24c660dfbaf39 (diff)
updated for version 7.0054
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/feature.h b/src/feature.h
index 3173901b27..fa874ed7a7 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