mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Update to c-ares version 1.13.0 from June 20 2017 Recipe updates: * Change SRC_URI to github, because tarball at https://c-ares.haxx.se/download/c-ares-1.13.0.tar.gz does not include all required files (cmake related). * Change build method to cmake. Library now supports cmake build system and installs *.cmake config files. These files can be used by several libraries/packages, such as gRPC, curl. * Add patch to generate and install libcares.pc during cmake build. * Add -utils package for the utilities installed during cmake build (acountry, adig, ahost). Highlights of library changes and bug fixes: * cmake build system support added * Add virtual function set for socket IO: ares_set_socket_functions * CVE-2017-1000381: c-ares NAPTR parser out of bounds access Full changelog - https://c-ares.haxx.se/changelog.html Signed-off-by: Alexey Firago <alexey_firago@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
23 lines
603 B
BlitzBasic
23 lines
603 B
BlitzBasic
# Copyright (c) 2012-2014 LG Electronics, Inc.
|
|
SUMMARY = "c-ares is a C library that resolves names asynchronously."
|
|
HOMEPAGE = "http://daniel.haxx.se/projects/c-ares/"
|
|
SECTION = "libs"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=f4b026880834eb01c035c5e5cb47ccac"
|
|
SRCREV = "3be1924221e1326df520f8498d704a5c4c8d0cce"
|
|
PV = "1.13.0+gitr${SRCPV}"
|
|
|
|
SRC_URI = "\
|
|
git://github.com/c-ares/c-ares.git \
|
|
file://cmake-install-libcares.pc.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit cmake pkgconfig
|
|
|
|
PACKAGES =+ "${PN}-utils"
|
|
|
|
FILES_${PN}-dev += "${libdir}/cmake"
|
|
FILES_${PN}-utils = "${bindir}"
|