diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2016-03-22 15:44:01 +0530 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-03-26 19:14:16 +0100 |
commit | b31b9d5b00b1b93eb373da4b0fe06ac396865a2e (patch) | |
tree | e8d46202a48912a377f7d12ac4d6d7a3fd192c51 /package/raptor/0001-configure.ac-remove-conditional-lib-inclusion.patch | |
parent | faab3bac33b5b30b37c7baf89263d209307d3217 (diff) | |
download | buildroot-b31b9d5b00b1b93eb373da4b0fe06ac396865a2e.tar.gz buildroot-b31b9d5b00b1b93eb373da4b0fe06ac396865a2e.zip |
raptor: new package
Raptor is a free software / Open Source C library that provides a set of parsers
and serializers that generate Resource Description Framework (RDF) triples
by parsing syntaxes or serialize the triples into a syntax.
http://librdf.org/raptor/
Patch added in the package:
0001-configure.ac-remove-conditional-lib-inclusion.patch
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Nitin Mendiratta <nitin.mendiratta@rockwellcollins.com>
[Thomas:
- add else clause for the three optional dependencies, as suggested
by Baruch.
- fix they yajl optional dependency, as noticed by Baruch.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/raptor/0001-configure.ac-remove-conditional-lib-inclusion.patch')
-rw-r--r-- | package/raptor/0001-configure.ac-remove-conditional-lib-inclusion.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/raptor/0001-configure.ac-remove-conditional-lib-inclusion.patch b/package/raptor/0001-configure.ac-remove-conditional-lib-inclusion.patch new file mode 100644 index 0000000000..7367ad2332 --- /dev/null +++ b/package/raptor/0001-configure.ac-remove-conditional-lib-inclusion.patch @@ -0,0 +1,21 @@ +Removed header Include path from the configure file as path was +from the host, which is wrong for the cross compilation. +Upstream: None + +Signed-off-by: Nitin Mendiratta <nitin.mendiratta@rockwellcollins.com> + +diff --git a/configure.ac b/configure.ac +index 10ff870..27b9957 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1145,9 +1145,7 @@ have_lininn=no + have_inn_parsedate=no + + oCPPFLAGS="$CPPFLAGS" +-if test -d /usr/include/inn; then +- CPPFLAGS="$CPPFLAGS -I/usr/include/inn" +-fi ++ + AC_CHECK_HEADER(libinn.h) + CPPFLAGS="$oCPPFLAGS" + |