Hi.
I am working ona software. But during the compilation, I've encountered some error messages like this:
	
	
	
		
On line 39 of rdf_serializer.h, raptor2.h was included as follows:
	
	
	
		
Then, I've noticed that raptor2.h does not exist in /usr/local/include, but it is in /usr/local/include/raptor2/raptor2.h (it can be confirmed by /usr/ports/textproc/raptor2/pkg-plist). So, I've opened rdf_serializer.h in my text editor and changed that line to:
	
	
	
		
And that particular error message was resolved. The same error messages happened for rdf_utf8.h, rdf_log.h, librdf.h, ... and resolved in the same way (i.e. I've changed <raptor2.h> to <raptor2/raptor2.h>) . Those header files (i.e. rdf_utf8.h, rdf_log.h, librdf.h and...) are part of textproc/redland. And /usr/local/include/raptor2/raptor2.h is part of textproc/raptor2.
Sorry for asking this stupid question, but is this a problem? Should I fill a PR?
				
			I am working on
		Code:
	
	...
Scanning dependencies of target traversoslv2
[ 41%] Building C object src/3rdparty/slv2/CMakeFiles/traversoslv2.dir/src/plugin.o
In file included from /usr/local/include/librdf.h:406,
                 from /usr/ports/obj/root/traverso/work/traverso-0.49.2/src/3rdparty/slv2/src/plugin.c:25:
/usr/local/include/rdf_serializer.h:[B]39[/B]:21: error: raptor2.h: No such file or directory
...
	On line 39 of rdf_serializer.h, raptor2.h was included as follows:
		Code:
	
	#include <raptor2.h>
	Then, I've noticed that raptor2.h does not exist in /usr/local/include, but it is in /usr/local/include/raptor2/raptor2.h (it can be confirmed by /usr/ports/textproc/raptor2/pkg-plist). So, I've opened rdf_serializer.h in my text editor and changed that line to:
		Code:
	
	#include <raptor2/raptor2.h>
	And that particular error message was resolved. The same error messages happened for rdf_utf8.h, rdf_log.h, librdf.h, ... and resolved in the same way (i.e. I've changed <raptor2.h> to <raptor2/raptor2.h>) . Those header files (i.e. rdf_utf8.h, rdf_log.h, librdf.h and...) are part of textproc/redland. And /usr/local/include/raptor2/raptor2.h is part of textproc/raptor2.
Sorry for asking this stupid question, but is this a problem? Should I fill a PR?