vi: tweak regex.h include
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 3 Jul 2011 01:19:43 +0000 (03:19 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 3 Jul 2011 01:19:43 +0000 (03:19 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/vi.c

index 3f4ccdcddfb548ed84408b17b8edc5d978502c59..55092f921b64410583d6704a434c17159ee479be 100644 (file)
 //usage:       )
 //usage:     "\n       -H      Short help regarding available features"
 
-#include <regex.h>
 #include "libbb.h"
+/* Should be after libbb.h: on some systems regex.h needs sys/types.h: */
+#if ENABLE_FEATURE_VI_REGEX_SEARCH
+# include <regex.h>
+#endif
 
 /* the CRASHME code is unmaintained, and doesn't currently build */
 #define ENABLE_FEATURE_VI_CRASHME 0
 
 /* 0x9b is Meta-ESC */
 #if ENABLE_FEATURE_VI_8BIT
-#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
+# define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
 #else
-#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
+# define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
 #endif
 
 #endif