diff mbox series

[1/1] tinycbor: bump to version 0.5.0

Message ID 20180206193505.6189-1-fontaine.fabrice@gmail.com
State Accepted
Headers show
Series [1/1] tinycbor: bump to version 0.5.0 | expand

Commit Message

Fabrice Fontaine Feb. 6, 2018, 7:35 p.m. UTC
This version added support for shared or static library building
through BUILD_STATIC and BUILD_SHARED variables so set them depending
on BR2_xxx_LIBS variables

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/tinycbor/tinycbor.hash |  2 +-
 package/tinycbor/tinycbor.mk   | 10 +++++++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

Comments

Thomas Petazzoni Feb. 8, 2018, 9:46 p.m. UTC | #1
Hello,

On Tue,  6 Feb 2018 20:35:05 +0100, Fabrice Fontaine wrote:
> This version added support for shared or static library building
> through BUILD_STATIC and BUILD_SHARED variables so set them depending
> on BR2_xxx_LIBS variables
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/tinycbor/tinycbor.hash |  2 +-
>  package/tinycbor/tinycbor.mk   | 10 +++++++++-
>  2 files changed, 10 insertions(+), 2 deletions(-)

Applied to next, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/tinycbor/tinycbor.hash b/package/tinycbor/tinycbor.hash
index affc7a6e41..73ab82f528 100644
--- a/package/tinycbor/tinycbor.hash
+++ b/package/tinycbor/tinycbor.hash
@@ -1,3 +1,3 @@ 
 # Locally computed:
-sha256	37a06c618ccddd7edc3747277425fcd38fa71eab37c7aaf0b03818a49950da81	tinycbor-v0.4.2.tar.gz
+sha256	5826a284e7f120a8d2c49cb581702be3e851acb4083a4f5af6112975a8b22209	tinycbor-v0.5.0.tar.gz
 sha256	3c6ba0b5bfa7830505301ffb336a17b0748e0d61c4d34216e9dc98f10e40395e	LICENSE
diff --git a/package/tinycbor/tinycbor.mk b/package/tinycbor/tinycbor.mk
index b1848b56aa..a9afbb6e46 100644
--- a/package/tinycbor/tinycbor.mk
+++ b/package/tinycbor/tinycbor.mk
@@ -4,7 +4,7 @@ 
 #
 ################################################################################
 
-TINYCBOR_VERSION = v0.4.2
+TINYCBOR_VERSION = v0.5.0
 TINYCBOR_SITE = $(call github,intel,tinycbor,$(TINYCBOR_VERSION))
 TINYCBOR_LICENSE = MIT
 TINYCBOR_LICENSE_FILES = LICENSE
@@ -18,6 +18,14 @@  endif
 
 TINYCBOR_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS) V=1
 
+ifeq ($(BR2_STATIC_LIBS),y)
+TINYCBOR_MAKE_OPTS += BUILD_STATIC=1 BUILD_SHARED=0
+else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
+TINYCBOR_MAKE_OPTS += BUILD_STATIC=1 BUILD_SHARED=1
+else ifeq ($(BR2_SHARED_LIBS),y)
+TINYCBOR_MAKE_OPTS += BUILD_STATIC=0 BUILD_SHARED=1
+endif
+
 # disabled parallel build because of build failures while
 # producing the .config file
 define TINYCBOR_BUILD_CMDS