summaryrefslogtreecommitdiffstats
path: root/libraries/libebml/patch.patch
diff options
context:
space:
mode:
author Ozan Turkyilmaz <ozan.turkyilmaz@gmail.com>2018-10-17 12:48:17 +0500
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2018-10-18 03:43:49 +0700
commitc710d4ce5ddbbfbd921ccb624f7cefe7307a4898 (patch)
tree393ccd0d3e523e1a908b201a507a4706d54e9281 /libraries/libebml/patch.patch
parentc0ba35b6c1163534cdf29d857e9505548f70e835 (diff)
downloadslackbuilds-c710d4ce5ddbbfbd921ccb624f7cefe7307a4898.tar.gz
slackbuilds-c710d4ce5ddbbfbd921ccb624f7cefe7307a4898.tar.xz
libraries/libebml: Updated Libebml to 1.3.6.
The build system is cmake now. Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libebml/patch.patch')
-rw-r--r--libraries/libebml/patch.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/libraries/libebml/patch.patch b/libraries/libebml/patch.patch
new file mode 100644
index 0000000000..3e341d0792
--- /dev/null
+++ b/libraries/libebml/patch.patch
@@ -0,0 +1,23 @@
+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
+---
+ 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"
+