]> git.pld-linux.org Git - packages/rpm.git/blame - gcc6-stdlib.patch
- next batch of patch updates
[packages/rpm.git] / gcc6-stdlib.patch
CommitLineData
7feffaab
ER
1gcc6 hack
2
3http://lists.pld-linux.org/mailman/pipermail/pld-devel-en/2017-June/025365.html
4https://patchwork.openembedded.org/patch/122245/
5
6 ---
7
8gcc6 has fixed a long standing c++ include issue where <cheader>
9was different from <header.h> inclusion via
10
11https://gcc.gnu.org/ml/libstdc++/2016-01/msg00025.html
12
13and its also descibed in https://gcc.gnu.org/gcc-6/porting_to.html
14rpmio component uses some .cpp and .cc fies which need to use
15C stdlib.h from C library and not the C++ libstdc++ header
16therefore we pass _GLIBCXX_INCLUDE_NEXT_C_HEADERS so that it
17keeps the old behavior
18--- rpm-5.4.15/rpmio/rpmjni.cc~ 2014-08-09 01:08:50.000000000 +0300
19+++ rpm-5.4.15/rpmio/rpmjni.cc 2017-06-25 16:42:23.383464974 +0300
20@@ -1,3 +1,4 @@
21+#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS
22 #include "system.h"
23 #include <rpmlog.h>
24 #include <rpmmacro.h>
25--- rpm-5.4.15/rpmqv.cc~ 2017-06-25 17:37:53.000000000 +0300
26+++ rpm-5.4.15/rpmqv.cc 2017-06-25 18:01:37.158939691 +0300
27@@ -1,3 +1,4 @@
28+#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS
29 #include "system.h"
30 extern const char *__progname;
31
This page took 0.027807 seconds and 4 git commands to generate.