libsoup3: update to 3.6.0; fix GTK2/3 app startup
[oi-userland.git] / components / desktop / libreoffice / patches / 07-need-climits-header.patch
blob4443b849071f732ec64ec39b654ee4984e8b2784
1 --- core-b14583ba37a6d7ce398ccd3cf339f954785b03d8/include/comphelper/errcode.hxx.~1~ 2023-10-24 23:34:49.856823014 -0400
2 +++ core-b14583ba37a6d7ce398ccd3cf339f954785b03d8/include/comphelper/errcode.hxx 2023-10-24 23:38:05.004249806 -0400
3 @@ -24,6 +24,10 @@
4 #include <o3tl/typed_flags_set.hxx>
5 #include <optional>
7 +#if defined(__sun)
8 +#include <climits>
9 +#endif
11 #if defined(DBG_UTIL)
12 #if __has_include(<version>)
13 #include <version>
14 --- core-589fb36b663cbd68afc26419629a4a95bd593a89/sc/source/core/data/dptabsrc.cxx.old 2024-04-18 08:59:18.767792648 -0400
15 +++ core-589fb36b663cbd68afc26419629a4a95bd593a89/sc/source/core/data/dptabsrc.cxx 2024-04-18 09:00:31.796234893 -0400
16 @@ -22,6 +22,10 @@
17 #include <algorithm>
18 #include <vector>
20 +#if defined(__sun)
21 +#include <climits>
22 +#endif
24 #include <comphelper/sequence.hxx>
25 #include <o3tl/any.hxx>
26 #include <o3tl/safeint.hxx>
27 --- libreoffice-24.8.0.0.beta1/sax/source/tools/converter.cxx.old 2024-06-13 16:39:44.900262037 -0400
28 +++ libreoffice-24.8.0.0.beta1/sax/source/tools/converter.cxx 2024-06-13 16:43:53.897697586 -0400
29 @@ -39,6 +39,10 @@
30 #include <algorithm>
31 #include <string_view>
33 +#ifdef __sun
34 +#include <climits>
35 +#endif
37 using namespace com::sun::star;
38 using namespace com::sun::star::uno;
39 using namespace com::sun::star::util;