summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/apt/apt/gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/apt/apt/gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch')
-rw-r--r--meta/recipes-devtools/apt/apt/gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/apt/apt/gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch b/meta/recipes-devtools/apt/apt/gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch
new file mode 100644
index 0000000000..cb32591876
--- /dev/null
+++ b/meta/recipes-devtools/apt/apt/gcc_4.x_apt-pkg-contrib-strutl.cc-Include-array-header.patch
@@ -0,0 +1,33 @@
1From ff8562f7724c4db4b83635af9e627f3495222327 Mon Sep 17 00:00:00 2001
2From: Anibal Limon <limon.anibal@gmail.com>
3Date: Tue, 22 Aug 2017 04:41:31 -0500
4Subject: [PATCH 1/3] apt-pkg/contrib/strutl.cc: Include array header
5
6If GCC version is less than 5 the array header needs to be included
7to support std::array.
8
9After we drop debian8 and centos7 that has gcc < 5 versions this patch
10can be remove.
11
12Signed-off-by: Anibal Limon <limon.anibal@gmail.com>
13
14Upstream-Status: Inappropriate [embedded specific]
15---
16 apt-pkg/contrib/strutl.cc | 1 +
17 1 file changed, 1 insertion(+)
18
19diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc
20index 60d0ca8..c2ff01d 100644
21--- a/apt-pkg/contrib/strutl.cc
22+++ b/apt-pkg/contrib/strutl.cc
23@@ -27,6 +27,7 @@
24 #include <sstream>
25 #include <string>
26 #include <vector>
27+#include <array>
28
29 #include <stddef.h>
30 #include <stdlib.h>
31--
322.1.4
33