Bump buildroot to 2019.02

This commit is contained in:
2019-03-28 22:49:48 +01:00
parent 5598b1b762
commit 920d307141
5121 changed files with 78550 additions and 46132 deletions

View File

@@ -0,0 +1,28 @@
From e46906b80e7662fb78d305f576412f9fa4a22218 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= <hugo@beauzee.fr>
Date: Mon, 23 Apr 2018 12:05:42 +0200
Subject: [PATCH] EbmlSInteger: Use <limits> instead of <climits>
The former is the proper header to use for std::numerical_limits
Retrieved from:
https://github.com/Matroska-Org/libebml/commit/e46906b80e7662fb78d305f576412f9fa4a22218
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
src/EbmlSInteger.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/EbmlSInteger.cpp b/src/EbmlSInteger.cpp
index 33f3637..b930f7d 100644
--- a/src/EbmlSInteger.cpp
+++ b/src/EbmlSInteger.cpp
@@ -33,7 +33,7 @@
\author Moritz Bunkus <moritz @ bunkus.org>
*/
#include <cassert>
-#include <climits>
+#include <limits>
#include "ebml/EbmlSInteger.h"

View File

@@ -1,2 +1,3 @@
# Locally calculated
sha256 35fb44daa41961f94a0ac1b8f06801e88cc9bf2ad6f562ced8ab7c1f1a875499 libebml-1.3.3.tar.bz2
sha256 1e5a7a7820c493aa62b0f35e15b4233c792cc03458c55ebdfa7a6521e4b43e9e libebml-1.3.6.tar.xz
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 LICENSE.LGPL

View File

@@ -4,11 +4,11 @@
#
################################################################################
LIBEBML_VERSION = 1.3.3
LIBEBML_SOURCE = libebml-$(LIBEBML_VERSION).tar.bz2
LIBEBML_VERSION = 1.3.6
LIBEBML_SOURCE = libebml-$(LIBEBML_VERSION).tar.xz
LIBEBML_SITE = http://dl.matroska.org/downloads/libebml
LIBEBML_INSTALL_STAGING = YES
LIBEBML_LICENSE = LGPL-2.1+
LIBEBML_LICENSE_FILES = LICENSE.LGPL
$(eval $(autotools-package))
$(eval $(cmake-package))