Dave Beckett
Dave Beckett
I added an upstream support fix for PCRE2 at https://github.com/dajobe/rasqal/commit/4a2e3d2b866a1400eebb5110e95aedc9bf372c39 however just for the record, POSIX regex.h is just fine as it's only using posix regex match & replace functionality.
1.27 was not released yet so I'm not sure what is reported here. There have been no auth changes in the most recent commits. Last time I checked, this was...
Might be related to https://github.com/dajobe/flickcurl/issues/30 ?
There's not enough information here to help. My guess is that it's how raptor's functions are being called. Since raptor isn't written in a reference counted language with garbage collection,...
If you can demonstrate this issue/crash with the lastest release build of raptor and the 'rapper' utility, then I probably can look deeper. FWIW I only have amd64, aarch64 (linux)...
I can reproduce this crash with raptor GIT head and the given example file on x86_64 and arm64
Preliminary patch seems to be: ``` diff --git a/src/turtle_parser.y b/src/turtle_parser.y index 7a59bf42..f5397210 100644 --- a/src/turtle_parser.y +++ b/src/turtle_parser.y @@ -231,7 +231,6 @@ graph: GRAPH_NAME_LEFT_CURLY if(turtle_parser->graph_name) raptor_free_term(turtle_parser->graph_name); turtle_parser->graph_name = raptor_new_term_from_uri(rdf_parser->world, $1); -...
If you are building from GIT sources rather than a tarball, you need to do more than just run configure. It's described in the install file which is easier to...
Looks like I have a documentation gap. You need to add '--enable-maintainer-mode' to configure (or autogen.sh) to enable the flex generation rules in Makefile.am
actually autogen.sh will do that... so there's something else. If you can paste the output of the `./autogen.sh` run then maybe it'll show the problem.