From 4a1ecba6d905fb699074df37f3fdb4cd7f5ca994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 18 Feb 2012 00:54:03 +0100 Subject: regex: Move the defines to a config header and include it unconditionally --- deps/regex/config.h | 7 +++++++ deps/regex/regex.c | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 deps/regex/config.h (limited to 'deps') diff --git a/deps/regex/config.h b/deps/regex/config.h new file mode 100644 index 000000000..95370690e --- /dev/null +++ b/deps/regex/config.h @@ -0,0 +1,7 @@ +#ifndef _REGEX_CONFIG_H_ +#define _REGEX_CONFIG_H_ + +# define GAWK +# define NO_MBSUPPORT + +#endif diff --git a/deps/regex/regex.c b/deps/regex/regex.c index 3dd8dfa01..f9a8c9bf1 100644 --- a/deps/regex/regex.c +++ b/deps/regex/regex.c @@ -18,9 +18,7 @@ Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif /* Make sure noone compiles this code with a C++ compiler. */ #ifdef __cplusplus -- cgit v1.2.1