diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-11-13 06:44:29 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2017-11-13 06:44:29 +0300 |
commit | 9db9e1d7909f1ab77f5d797545fa97881ed66caf (patch) | |
tree | f6809266c9a32d1791b0412638640faa54453230 /x11-libs | |
parent | 4c383f1c76995bd425bc7ec238ea05fbfe95ed8c (diff) |
wxGTK: relax cxx abi check //this may cause problems...
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/wxGTK/files/wxGTK-2.8.x-gxx_abi.patch | 2 | ||||
-rw-r--r-- | x11-libs/wxGTK/files/wxGTK-3.0.x-gxx-abi.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/x11-libs/wxGTK/files/wxGTK-2.8.x-gxx_abi.patch b/x11-libs/wxGTK/files/wxGTK-2.8.x-gxx_abi.patch index 591dc18..969371f 100644 --- a/x11-libs/wxGTK/files/wxGTK-2.8.x-gxx_abi.patch +++ b/x11-libs/wxGTK/files/wxGTK-2.8.x-gxx_abi.patch @@ -5,7 +5,7 @@ diff -Naur wxPython-src-2.8.12.1/include/wx/build.h wxPython-src-2.8.12.1_patche // GCC and Intel C++ share same C++ ABI (and possibly others in the future), // check if compiler versions are compatible: #if defined(__GXX_ABI_VERSION) -+ #if ((__GXX_ABI_VERSION >= 1002) && (__GXX_ABI_VERSION <=1008)) ++ #if ((__GXX_ABI_VERSION >= 1002) && (__GXX_ABI_VERSION <=1011)) + #define wxGXX_EFFECTIVE_ABI_VERSION 1002 + #else + #define wxGXX_EFFECTIVE_ABI_VERSION __GXX_ABI_VERSION diff --git a/x11-libs/wxGTK/files/wxGTK-3.0.x-gxx-abi.patch b/x11-libs/wxGTK/files/wxGTK-3.0.x-gxx-abi.patch index a4eda43..0885356 100644 --- a/x11-libs/wxGTK/files/wxGTK-3.0.x-gxx-abi.patch +++ b/x11-libs/wxGTK/files/wxGTK-3.0.x-gxx-abi.patch @@ -5,7 +5,7 @@ diff -Naur wxPython-src-3.0.2.0/include/wx/build.h wxPython-src-3.0.2.0_patched/ // GCC and Intel C++ share same C++ ABI (and possibly others in the future), // check if compiler versions are compatible: #if defined(__GXX_ABI_VERSION) -+ #if ((__GXX_ABI_VERSION >= 1002) && (__GXX_ABI_VERSION <=1008)) ++ #if ((__GXX_ABI_VERSION >= 1002) && (__GXX_ABI_VERSION <=1011)) + #define wxGXX_EFFECTIVE_ABI_VERSION 1002 + #else + #define wxGXX_EFFECTIVE_ABI_VERSION __GXX_ABI_VERSION |