View | Details | Raw Unified | Return to bug 213768 | Differences between
and this patch

Collapse All | Expand All

(-)editors/libreoffice/files/patch-connectivity_source_commontools_dbconversion.cxx (+14 lines)
Added Link Here
1
--- connectivity/source/commontools/dbconversion.cxx.orig	2016-10-30 21:23:17 UTC
2
+++ connectivity/source/commontools/dbconversion.cxx
3
@@ -17,6 +17,11 @@
4
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
5
  */
6
 
7
+// fix for lang/gcc5+
8
+#if __GNUC__ >= 5
9
+#include <cstdio>
10
+#endif
11
+
12
 #include <connectivity/dbconversion.hxx>
13
 #include <connectivity/dbcharset.hxx>
14
 #include <osl/diagnose.h>
(-)editors/libreoffice/files/patch-connectivity_source_drivers_dbase_DTable.cxx (+14 lines)
Added Link Here
1
--- connectivity/source/drivers/dbase/DTable.cxx.orig	2016-10-30 22:05:30 UTC
2
+++ connectivity/source/drivers/dbase/DTable.cxx
3
@@ -17,6 +17,11 @@
4
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
5
  */
6
 
7
+// fix for lang/gcc5+
8
+#if __GNUC__ >= 5
9
+#include <cstdio>
10
+#endif
11
+
12
 #include "dbase/DTable.hxx"
13
 #include <com/sun/star/sdbc/ColumnValue.hpp>
14
 #include <com/sun/star/sdbc/DataType.hpp>
(-)editors/libreoffice/files/patch-sc_source_core_opencl_formulagroupcl.cxx (+15 lines)
Added Link Here
1
--- sc/source/core/opencl/formulagroupcl.cxx.orig	2016-10-30 23:28:26 UTC
2
+++ sc/source/core/opencl/formulagroupcl.cxx
3
@@ -7,6 +7,12 @@
4
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
  */
6
 
7
+// fix for lang/gcc5
8
+#if __GNUC__ == 5
9
+#define _GLIBCXX_USE_C99 1
10
+#include <string>
11
+#endif
12
+
13
 #include "formulagroup.hxx"
14
 #include "formulagroupcl.hxx"
15
 #include "clkernelthread.hxx"
(-)editors/libreoffice/files/patch-svtools_source_svhtml_parhtml.cxx (+13 lines)
Added Link Here
1
--- svtools/source/svhtml/parhtml.cxx.orig	2016-10-30 21:13:49 UTC
2
+++ svtools/source/svhtml/parhtml.cxx
3
@@ -17,6 +17,10 @@
4
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
5
  */
6
 
7
+// fix for lang/gcc5+
8
+#if __GNUC__ >= 5
9
+#include <cstdio>
10
+#endif
11
 
12
 #include <ctype.h>
13
 #include <comphelper/string.hxx>
(-)editors/libreoffice/files/patch-svtools_source_svrtf_svparser.cxx (+13 lines)
Added Link Here
1
--- svtools/source/svrtf/svparser.cxx.orig	2016-10-30 20:43:27 UTC
2
+++ svtools/source/svrtf/svparser.cxx
3
@@ -24,6 +24,10 @@
4
 #include <rtl/tencinfo.h>
5
 
6
 #include <boost/ptr_container/ptr_vector.hpp>
7
+// fix for lang/gcc5+
8
+#if __GNUC__ >= 5
9
+#include <cstdio>
10
+#endif
11
 
12
 // structure to store the actuel data
13
 struct SvParser_Impl
(-)editors/libreoffice/files/patch-sw_qa_extras_ooxmlimport_ooxmlimport.cxx (+14 lines)
Added Link Here
1
--- sw/qa/extras/ooxmlimport/ooxmlimport.cxx.orig	2016-10-31 03:05:53 UTC
2
+++ sw/qa/extras/ooxmlimport/ooxmlimport.cxx
3
@@ -7,6 +7,11 @@
4
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
  */
6
 
7
+// fix for lang/gcc5
8
+#if __GNUC__ == 5
9
+#define _GLIBCXX_USE_C99 1
10
+#endif
11
+
12
 #include "config_test.h"
13
 
14
 #ifdef MACOSX
(-)editors/libreoffice/files/patch-sw_source_filter_html_parcss1.cxx (+14 lines)
Added Link Here
1
--- sw/source/filter/html/parcss1.cxx.orig	2016-10-30 23:55:33 UTC
2
+++ sw/source/filter/html/parcss1.cxx
3
@@ -17,6 +17,11 @@
4
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
5
  */
6
 
7
+// fix for lang/gcc5+
8
+#if __GNUC__ >= 5
9
+#include <cstdio>
10
+#endif
11
+
12
 #include <ctype.h>
13
 #include <stdlib.h>
14
 #include <limits.h>
(-)editors/libreoffice/files/patch-vcl_workben_mtfdemo.cxx (+13 lines)
Added Link Here
1
--- vcl/workben/mtfdemo.cxx.orig	2016-10-30 20:38:14 UTC
2
+++ vcl/workben/mtfdemo.cxx
3
@@ -30,6 +30,10 @@
4
 #include <tools/stream.hxx>
5
 
6
 #include <cstdlib>
7
+// fix for lang/gcc5+
8
+#if __GNUC__ >= 5
9
+#include <cstdio>
10
+#endif
11
 
12
 using namespace com::sun::star;
13
 

Return to bug 213768