1SUMMARY = "Fast Log processor and Forwarder" 2DESCRIPTION = "Fluent Bit is a data collector, processor and \ 3forwarder for Linux. It supports several input sources and \ 4backends (destinations) for your data. \ 5" 6 7HOMEPAGE = "http://fluentbit.io" 8BUGTRACKER = "https://github.com/fluent/fluent-bit/issues" 9 10LICENSE = "Apache-2.0" 11LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" 12SECTION = "net" 13 14SRC_URI = "http://fluentbit.io/releases/1.3/fluent-bit-${PV}.tar.gz \ 15 file://jemalloc.patch \ 16 file://cross-build-init-system-detection.patch \ 17 file://builtin-nan.patch \ 18 file://0001-ppc-Fix-signature-for-co_create-API.patch \ 19 file://0001-bin-fix-SIGSEGV-caused-by-using-flb_free-instead-of-.patch \ 20 file://0002-parser-Fix-SIGSEGV-caused-by-using-flb_free-instead-.patch \ 21 file://0001-Control-sytemd-unit-install-location-with-SYSTEM_DIR.patch \ 22 " 23SRC_URI[md5sum] = "6eae6dfd0a874e5dd270c36e9c68f747" 24SRC_URI[sha256sum] = "e037c76c89269c8dc4027a08e442fefd2751b0f1e0f9c38f9a4b12d781a9c789" 25 26S = "${WORKDIR}/fluent-bit-${PV}" 27DEPENDS = "zlib bison-native flex-native" 28DEPENDS += "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" 29 30DEPENDS:append:libc-musl = " fts " 31 32INSANE_SKIP:${PN}-dev += "dev-elf" 33 34LTO = "" 35 36# Use CMake 'Unix Makefiles' generator 37OECMAKE_GENERATOR ?= "Unix Makefiles" 38 39# Fluent Bit build options 40# ======================== 41 42# Host related setup 43EXTRA_OECMAKE += "-DGNU_HOST=${HOST_SYS} -DFLB_ALL=ON -DFLB_TD=1" 44 45# Disable LuaJIT and filter_lua support 46EXTRA_OECMAKE += "-DFLB_LUAJIT=Off -DFLB_FILTER_LUA=Off " 47 48# Disable Library and examples 49EXTRA_OECMAKE += "-DFLB_SHARED_LIB=Off -DFLB_EXAMPLES=Off " 50 51# Enable systemd iff systemd is in DISTRO_FEATURES 52EXTRA_OECMAKE += "${@bb.utils.contains('DISTRO_FEATURES','systemd','-DFLB_SYSTEMD=On -DSYSTEMD_DIR=${systemd_system_unitdir}','-DFLB_SYSTEMD=Off',d)}" 53 54EXTRA_OECMAKE:append:riscv64 = " -DFLB_DEPS='atomic'" 55EXTRA_OECMAKE:append:riscv32 = " -DFLB_DEPS='atomic'" 56 57# Kafka Output plugin (disabled by default): note that when 58# enabling Kafka output plugin, the backend library librdkafka 59# requires 'openssl' as a dependency. 60# 61# DEPENDS += "openssl " 62# EXTRA_OECMAKE += "-DFLB_OUT_KAFKA=On " 63 64inherit cmake systemd 65 66CFLAGS += "-fcommon" 67 68SYSTEMD_SERVICE:${PN} = "td-agent-bit.service" 69TARGET_CC_ARCH:append = " ${SELECTED_OPTIMIZATION}" 70