2007-09-10 Marco Barisione <marco@barisione.org>
* glib/gregex.c: define PCRE_ERROR_NULLWSLIMIT if it's not defined by
PCRE, has PCRE 7.3 removed this definition. (#475474)
svn path=/trunk/; revision=5742
+2007-09-10 Marco Barisione <marco@barisione.org>
+
+ * glib/gregex.c: define PCRE_ERROR_NULLWSLIMIT if it's not defined by
+ PCRE, has PCRE 7.3 removed this definition. (#475474)
+
2007-09-05 Behdad Esfahbod <behdad@gnome.org>
* glib/gregex.c: Fix header inclusion. (#473879, Peter Kjellerstedt)
#include "pcre/pcre.h"
#endif
+/* PCRE 7.3 does not contain the definition of PCRE_ERROR_NULLWSLIMIT */
+#ifndef PCRE_ERROR_NULLWSLIMIT
+#define PCRE_ERROR_NULLWSLIMIT (-22)
+#endif
+
#include "galias.h"
/* Mask of all the possible values for GRegexCompileFlags. */