mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
@@ -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"
|
||||
|
||||
11
package/raptor/Config.in
Normal file
11
package/raptor/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_RAPTOR
|
||||
bool "raptor"
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
select BR2_PACKAGE_LIBXSLT
|
||||
help
|
||||
A 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/
|
||||
2
package/raptor/raptor.hash
Normal file
2
package/raptor/raptor.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed raptor2-2.0.15.tar.gz
|
||||
44
package/raptor/raptor.mk
Normal file
44
package/raptor/raptor.mk
Normal file
@@ -0,0 +1,44 @@
|
||||
################################################################################
|
||||
#
|
||||
# raptor
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RAPTOR_VERSION = 2.0.15
|
||||
RAPTOR_SOURCE = raptor2-$(RAPTOR_VERSION).tar.gz
|
||||
RAPTOR_SITE = http://download.librdf.org/source
|
||||
RAPTOR_DEPENDENCIES = libxml2 libxslt
|
||||
RAPTOR_LICENSE = GPL-2.0+ or LGPL-2.1+ or Apache-2.0+
|
||||
RAPTOR_LICENSE_FILES = LICENSE.txt
|
||||
RAPTOR_INSTALL_STAGING = YES
|
||||
|
||||
# Flag is added to make sure the patch is applied for the configure.ac of raptor.
|
||||
RAPTOR_AUTORECONF = YES
|
||||
|
||||
RAPTOR_CONF_OPTS =\
|
||||
--with-xml2-config=$(STAGING_DIR)/usr/bin/xml2-config \
|
||||
--with-xslt-config=$(STAGING_DIR)/usr/bin/xslt-config
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
||||
RAPTOR_DEPENDENCIES += libcurl
|
||||
RAPTOR_CONF_OPTS += --with-curl-config=$(STAGING_DIR)/usr/bin/curl-config
|
||||
else
|
||||
RAPTOR_CONF_OPTS += --with-curl-config=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_YAJL),y)
|
||||
RAPTOR_DEPENDENCIES += yajl
|
||||
RAPTOR_CONF_ENV += LIBS="-lm"
|
||||
RAPTOR_CONF_OPTS += --with-yajl=$(STAGING_DIR)/usr
|
||||
else
|
||||
RAPTOR_CONF_OPTS += --with-yajl=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ICU),y)
|
||||
RAPTOR_DEPENDENCIES += icu
|
||||
RAPTOR_CONF_OPTS += --with-icu-config=$(STAGING_DIR)/usr/bin/icu-config
|
||||
else
|
||||
RAPTOR_CONF_OPTS += --with-icu-config=no
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user