faa592179d
Changes since version 0.24: 0.28: Fix issue with NULL check of D-Bus proxy for method calls. Add support for emitting D-Bus property changes on demand. Add support for reporting file attribute changes. 0.27: Fix issue with data overflow and multiple PEMs. Fix issue with handling DHCP lease expiration. 0.26: Fix issue with memory leak and TLS certificates. Fix issue with buffer size and TLS PRF handling. Add support for D-Bus non-root ObjectManager. 0.25: Fix issue with stopping DHCP client and owner notification. Fix issue with time calculation overflow and DHCP. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
711 B
Makefile
28 lines
711 B
Makefile
################################################################################
|
|
#
|
|
# ell
|
|
#
|
|
################################################################################
|
|
|
|
ELL_VERSION = 0.28
|
|
ELL_SITE = https://git.kernel.org/pub/scm/libs/ell/ell.git
|
|
ELL_SITE_METHOD = git
|
|
ELL_LICENSE = LGPL-2.1+
|
|
ELL_LICENSE_FILES = COPYING
|
|
ELL_INSTALL_STAGING = YES
|
|
# sources from git, no configure script provided
|
|
ELL_AUTORECONF = YES
|
|
|
|
# autoreconf requires an existing build-aux directory
|
|
define ELL_MKDIR_BUILD_AUX
|
|
mkdir -p $(@D)/build-aux
|
|
endef
|
|
ELL_POST_PATCH_HOOKS += ELL_MKDIR_BUILD_AUX
|
|
|
|
ELL_DEPENDENCIES = host-pkgconf
|
|
|
|
# disable ell/glib main loop example
|
|
ELL_CONF_OPTS = --disable-glib
|
|
|
|
$(eval $(autotools-package))
|