comparison src/feature.h @ 177:84c21eb4fc40

updated for version 7.0054
author vimboss
date Mon, 28 Feb 2005 22:44:58 +0000
parents 25cfd881cbba
children 041a413d626d
comparison
equal deleted inserted replaced
176:df9a1e1ffecd 177:84c21eb4fc40
1 /* vi:set ts=8 sts=0 sw=8: 1 /* vi:set ts=8 sts=4 sw=4:
2 * 2 *
3 * VIM - Vi IMproved by Bram Moolenaar 3 * VIM - Vi IMproved by Bram Moolenaar
4 * 4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions. 5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed. 6 * Do ":help credits" in Vim to see a list of people who contributed.
380 #endif 380 #endif
381 381
382 /* 382 /*
383 * +profile Profiling for functions and scripts. 383 * +profile Profiling for functions and scripts.
384 */ 384 */
385 #if defined(FEAT_HUGE) && defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) 385 #if defined(FEAT_HUGE) \
386 && ((defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) \
387 || defined(WIN3264))
386 # define FEAT_PROFILE 388 # define FEAT_PROFILE
387 #endif 389 #endif
388 390
389 /* 391 /*
390 * Insert mode completion with 'completefunc'. 392 * Insert mode completion with 'completefunc'.