define PCRE_ERROR_NULLWSLIMIT if it's not defined by PCRE, has PCRE 7.3
authorMarco Barisione <marco@barisione.org>
Mon, 10 Sep 2007 15:17:19 +0000 (15:17 +0000)
committerMarco Barisione <mbari@src.gnome.org>
Mon, 10 Sep 2007 15:17:19 +0000 (15:17 +0000)
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

ChangeLog
glib/gregex.c

index 87f4017..cd1f98e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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)
index 8cc4024..a1ec7be 100644 (file)
 #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. */