updated for version 7.3.1130
Problem: Can't build with anything but huge features.
Solution: Check for FEAT_PROFILE. (Yasuhiro Matsumoto)
diff --git a/src/structs.h b/src/structs.h
index 20b12ba..4f38ad9 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1206,7 +1206,7 @@
typedef struct qf_info_S qf_info_T;
#endif
-#ifdef FEAT_RELTIME
+#ifdef FEAT_PROFILE
/*
* Used for :syntime: timing of executing a syntax pattern.
*/
@@ -1242,7 +1242,7 @@
long b_syn_sync_linebreaks; /* offset for multi-line pattern */
char_u *b_syn_linecont_pat; /* line continuation pattern */
regprog_T *b_syn_linecont_prog; /* line continuation program */
-#ifdef FEAT_RELTIME
+#ifdef FEAT_PROFILE
syn_time_T b_syn_linecont_time;
#endif
int b_syn_linecont_ic; /* ignore-case flag for above */