From b692a6d7f49dcf47780fb12f7d6e0547a10c0710 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Blin?=
 <sebastien.blin@savoirfairelinux.com>
Date: Fri, 30 Jul 2021 12:09:00 -0400
Subject: [PATCH] msgpack; fix build on ubuntu 20.04

ubuntu 20.04 uses msgpack 3.0.1-3, however daemon doesn't seems
to build (msgpack_pack not found). This fix the build for ubuntu 20.04

Change-Id: I84d50b94b2e7b40d9cd8a599dd5d7da8c2ac4194
---
 contrib/src/msgpack/rules.mak | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/src/msgpack/rules.mak b/contrib/src/msgpack/rules.mak
index e35817a377..2896e3a2d2 100644
--- a/contrib/src/msgpack/rules.mak
+++ b/contrib/src/msgpack/rules.mak
@@ -3,7 +3,7 @@ MSGPACK_VERSION := cpp-3.2.0
 MSGPACK_URL := https://github.com/msgpack/msgpack-c/archive/$(MSGPACK_VERSION).tar.gz
 
 PKGS += msgpack
-ifeq ($(call need_pkg,"msgpack >= 3.0.0"),)
+ifeq ($(call need_pkg,"msgpack >= 3.1.0"),)
 PKGS_FOUND += msgpack
 endif
 
-- 
GitLab