package/libebml: bump to version 1.4.4
- Drop patch (already in version) - C++14 is required since4159caf84c
https://github.com/Matroska-Org/libebml/blob/release-1.4.4/NEWS.md Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be> (cherry picked from commitcef841bf7d
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
f67494c4f1
commit
f9bc00b561
@ -1,40 +0,0 @@
|
||||
From f0bfd53647961e799a43d918c46cf3b6bff89806 Mon Sep 17 00:00:00 2001
|
||||
From: Moritz Bunkus <mo@bunkus.online>
|
||||
Date: Sat, 27 Feb 2021 20:36:52 +0100
|
||||
Subject: [PATCH] include appropriate header files for std::numeric_limits
|
||||
|
||||
Fixes #80.
|
||||
|
||||
[Retrieved (and updated to remove ChangeLog update) from:
|
||||
https://github.com/Matroska-Org/libebml/commit/f0bfd53647961e799a43d918c46cf3b6bff89806]
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
ChangeLog | 4 ++++
|
||||
src/EbmlString.cpp | 1 +
|
||||
src/EbmlUnicodeString.cpp | 1 +
|
||||
3 files changed, 6 insertions(+)
|
||||
|
||||
diff --git a/src/EbmlString.cpp b/src/EbmlString.cpp
|
||||
index 27e55fd..4c05fcf 100644
|
||||
--- a/src/EbmlString.cpp
|
||||
+++ b/src/EbmlString.cpp
|
||||
@@ -34,6 +34,7 @@
|
||||
\author Steve Lhomme <robux4 @ users.sf.net>
|
||||
*/
|
||||
#include <cassert>
|
||||
+#include <limits>
|
||||
|
||||
#include "ebml/EbmlString.h"
|
||||
|
||||
diff --git a/src/EbmlUnicodeString.cpp b/src/EbmlUnicodeString.cpp
|
||||
index 496a16a..99fc073 100644
|
||||
--- a/src/EbmlUnicodeString.cpp
|
||||
+++ b/src/EbmlUnicodeString.cpp
|
||||
@@ -36,6 +36,7 @@
|
||||
*/
|
||||
|
||||
#include <cassert>
|
||||
+#include <limits>
|
||||
|
||||
#include "ebml/EbmlUnicodeString.h"
|
||||
|
@ -2,11 +2,13 @@ config BR2_PACKAGE_LIBEBML
|
||||
bool "libebml"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
|
||||
help
|
||||
Access library for the EBML (Extensible Binary Meta
|
||||
Language, a binary derivative of XML) format.
|
||||
|
||||
http://matroska.org
|
||||
|
||||
comment "libebml needs a toolchain w/ C++, wchar"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
|
||||
comment "libebml needs a toolchain w/ C++, wchar, gcc >= 4.9"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 41c7237ce05828fb220f62086018b080af4db4bb142f31bec0022c925889b9f2 libebml-1.4.2.tar.xz
|
||||
sha256 82dc5f83356cc9340aee76ed7512210b3a4edf5f346bc9c2c7044f55052687a7 libebml-1.4.4.tar.xz
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 LICENSE.LGPL
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBEBML_VERSION = 1.4.2
|
||||
LIBEBML_VERSION = 1.4.4
|
||||
LIBEBML_SOURCE = libebml-$(LIBEBML_VERSION).tar.xz
|
||||
LIBEBML_SITE = http://dl.matroska.org/downloads/libebml
|
||||
LIBEBML_INSTALL_STAGING = YES
|
||||
|
@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBMATROSKA
|
||||
bool "libmatroska"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libebml
|
||||
select BR2_PACKAGE_LIBEBML
|
||||
help
|
||||
Extensible open standard audio/video container format access
|
||||
@ -9,5 +10,6 @@ config BR2_PACKAGE_LIBMATROSKA
|
||||
|
||||
http://matroska.org
|
||||
|
||||
comment "libmatroska needs a toolchain w/ C++, wchar"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
|
||||
comment "libmatroska needs a toolchain w/ C++, wchar, gcc >= 4.9"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
|
Loading…
Reference in New Issue
Block a user