Changeset: ed114c44b9e8 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ed114c44b9e8 Modified Files: monetdb5/modules/mal/pcre.c Branch: Jun2016 Log Message:
PCRE before 8.13 has no pcre_free_study (Ubuntu 12.04). diffs (12 lines): diff --git a/monetdb5/modules/mal/pcre.c b/monetdb5/modules/mal/pcre.c --- a/monetdb5/modules/mal/pcre.c +++ b/monetdb5/modules/mal/pcre.c @@ -33,7 +33,7 @@ #include <pcre.h> -#if PCRE_MAJOR < 8 +#if PCRE_MAJOR < 8 || (PCRE_MAJOR == 8 && PCRE_MINOR < 13) #define pcre_free_study my_pcre_free #endif _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
