mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-08 10:15:23 +01:00
The recipe for iksemel 1.4 was blacklisted and eventually removed as it depended on an older version of gnutls which was no longer available in oe-core. Reinstate iksemel with a new recipe for iksemel 1.5, which can use either openssl or gnutls for TLS support. Fix build issues. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
25 lines
831 B
BlitzBasic
25 lines
831 B
BlitzBasic
SUMMARY = "Fast and portable XML parser and Jabber protocol library"
|
|
HOMEPAGE = "https://github.com/meduketto/iksemel"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499"
|
|
|
|
SRCREV = "978b733462e41efd5db72bc9974cb3b0d1d5f6fa"
|
|
PV = "1.5+git${SRCPV}"
|
|
|
|
SRC_URI = "git://github.com/meduketto/iksemel.git;protocol=https \
|
|
file://fix-configure-option-parsing.patch \
|
|
file://avoid-obsolete-gnutls-apis.patch"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig lib_package
|
|
|
|
# TLS support requires either openssl or gnutls (if both are enabled openssl will be used).
|
|
PACKAGECONFIG ?= "gnutls"
|
|
|
|
PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls"
|
|
PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
|
|
|
|
EXTRA_OECONF = "--disable-python"
|