From 3650172e26e63bc8a6ed194d3653e62269c72f60 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Fri, 8 May 2026 18:20:23 +0100 Subject: [PATCH] libb64: update to 2.0.0.1 Patch release fixing build system issues with the 2.0.0 release. 2.0.0 introduced API changes including: * Version macros for detection of incompatible API / version * size_t as argument to allow longer base64 encoded strings * Configurable line break functionality * Flags field for encoder * Helpers to calculate required output buffer maximum lengths * Switched in-/out-pointers to void* Link: https://github.com/libb64/libb64/blob/v2.0.0.1/CHANGELOG.md Signed-off-by: Daniel Golle --- libs/libb64/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/libb64/Makefile b/libs/libb64/Makefile index 284ca3afcc..afdb280e89 100644 --- a/libs/libb64/Makefile +++ b/libs/libb64/Makefile @@ -1,12 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libb64 -PKG_VERSION:=2.0.0 +PKG_VERSION:=2.0.0.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/libb64/libb64/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=28c43c47674409fc50e7145d4c2d26dc1f3d200889c41205e7812c2b67f26382 +PKG_HASH:=ce8e578a953a591bd4a6f157eec310b9a4c2e6f10ade2fdda6ae6bafaf798b98 PKG_LICENSE:=Public-Domain PKG_LICENSE_FILES:=LICENSE.md