From b3de88d2c49d80d6e11c81f15c89f9f7ccccd15a Mon Sep 17 00:00:00 2001 From: Vivek Kumar Dutta Date: Wed, 18 Oct 2023 13:35:28 +0530 Subject: [PATCH] obuspa: 7.0.4.10 --- obuspa/Makefile | 2 +- obuspa/patches/0008-fix_cmake_warning.patch | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 obuspa/patches/0008-fix_cmake_warning.patch diff --git a/obuspa/Makefile b/obuspa/Makefile index b1e4f8725..663f71ea6 100644 --- a/obuspa/Makefile +++ b/obuspa/Makefile @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=obuspa -PKG_VERSION:=7.0.4.9 +PKG_VERSION:=7.0.4.10 LOCAL_DEV:=0 ifneq ($(LOCAL_DEV),1) diff --git a/obuspa/patches/0008-fix_cmake_warning.patch b/obuspa/patches/0008-fix_cmake_warning.patch new file mode 100644 index 000000000..ed67623c4 --- /dev/null +++ b/obuspa/patches/0008-fix_cmake_warning.patch @@ -0,0 +1,12 @@ +diff --git a/src/protobuf-c/protobuf-c.c b/src/protobuf-c/protobuf-c.c +index 3dc5473..0a6bde7 100644 +--- a/src/protobuf-c/protobuf-c.c ++++ b/src/protobuf-c/protobuf-c.c +@@ -1926,6 +1926,7 @@ repeated_field_pack_to_buffer(const ProtobufCFieldDescriptor *field, + buffer->append(buffer, rv, scratch); + tmp = pack_buffer_packed_payload(field, count, array, buffer); + assert(tmp == payload_len); ++ (void)tmp; // Keep cmake production build happy + return rv + payload_len; + } else { + size_t siz;