mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-27 04:20:38 -09:00
When bumping to version v1.0.3-54-g819b24035c in Buildroot commit7d5bd5ecc0("package/azmq: bump version to git v1.0.3-54-g819b2403"), two things were missed: - the parameter to disable tests was renamed to AZMQ_BUILD_TESTS - the commit [0] was included. It removes the need for the Boost.System library linkage Fixes: https://autobuild.buildroot.org/results/2e7/2e7fe61cc349b843604091190fa7346f95dd0d56/ [0]b8b2a1aac4Signed-off-by: Michael Nosthoff <buildroot@heine.tech> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
597 B
Makefile
21 lines
597 B
Makefile
################################################################################
|
|
#
|
|
# azmq
|
|
#
|
|
################################################################################
|
|
|
|
AZMQ_VERSION = v1.0.3-54-g819b24035cfa5b73081e21f5867445f2344f680d
|
|
AZMQ_SITE = $(call github,zeromq,azmq,$(AZMQ_VERSION))
|
|
AZMQ_DEPENDENCIES = boost zeromq
|
|
AZMQ_LICENSE = BSL-1.0
|
|
AZMQ_LICENSE_FILES = LICENSE-BOOST_1_0
|
|
|
|
# AZMQ is a header only library, so it does not need to be installed on the
|
|
# target.
|
|
AZMQ_INSTALL_STAGING = YES
|
|
AZMQ_INSTALL_TARGET = NO
|
|
|
|
AZMQ_CONF_OPTS = -DAZMQ_BUILD_TESTS=OFF
|
|
|
|
$(eval $(cmake-package))
|