From: Fabrice Fontaine Date: Tue, 20 Nov 2018 21:48:23 +0000 (+0100) Subject: libostree: add systemd optional dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f7db7d07458a9a5dae313c2b2002b91c24c53b2;p=buildroot.git libostree: add systemd optional dependency This option is available since v2018.3: https://github.com/ostreedev/ostree/commit/17db0f15a79835b76ede6785120d237066c57d32 Signed-off-by: Fabrice Fontaine Reviewed-by: Marcus Folkesson Signed-off-by: Thomas Petazzoni --- diff --git a/package/libostree/libostree.mk b/package/libostree/libostree.mk index 4c841dbe4d..8538cdc69c 100644 --- a/package/libostree/libostree.mk +++ b/package/libostree/libostree.mk @@ -68,4 +68,13 @@ else LIBOSTREE_CONF_OPTS += --without-selinux endif +ifeq ($(BR2_INIT_SYSTEMD),y) +LIBOSTREE_CONF_OPTS += \ + --with-libsystemd \ + --with-systemdsystemunitdir=/usr/lib/systemd/system +LIBOSTREE_DEPENDENCIES += systemd +else +LIBOSTREE_CONF_OPTS += --without-libsystemd +endif + $(eval $(autotools-package))