diff options
author | Jonathan Chen <jonc@chen.org.nz> | 2022-06-03 12:06:36 +0200 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2022-06-03 12:06:36 +0200 |
commit | a0c13b4a90b805807864f484d8ade07906198dbf (patch) | |
tree | c832a120839ddc61118b6c1750ee556f054ba270 /java/eclipse/files/cef-patch | |
parent | sysutils/pftop: Take maintainership (diff) |
java/eclipse: update 4.16 -> 4.21
This release is 1.5 years overdue and 6 months out-of-date, but is
an important interim step to the 4.24 release due in June 2022.
Massive thanks go to Patrick Mackinlay who resolved the 2 critical
bugs preventing update from coming out sooner!
Author: Jonathan Chen <jonc@chen.org.nz>
PR: 264400
Diffstat (limited to 'java/eclipse/files/cef-patch')
-rw-r--r-- | java/eclipse/files/cef-patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/java/eclipse/files/cef-patch b/java/eclipse/files/cef-patch new file mode 100644 index 000000000000..7ffd86d8053d --- /dev/null +++ b/java/eclipse/files/cef-patch @@ -0,0 +1,24 @@ +diff -ruN ../cef_binary_3.3071.1649.g98725e6_linux64_minimal.orig/cmake/cef_variables.cmake ./cmake/cef_variables.cmake +--- ../cef_binary_3.3071.1649.g98725e6_linux64_minimal.orig/cmake/cef_variables.cmake 2017-07-19 17:50:42.000000000 +1200 ++++ ./cmake/cef_variables.cmake 2020-10-02 14:38:13.438964000 +1300 +@@ -16,7 +16,7 @@ + if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") + set(OS_MACOSX 1) + set(OS_POSIX 1) +-elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") ++elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD") + set(OS_LINUX 1) + set(OS_POSIX 1) + elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") +diff -ruN ../cef_binary_3.3071.1649.g98725e6_linux64_minimal.orig/include/base/cef_build.h ./include/base/cef_build.h +--- ../cef_binary_3.3071.1649.g98725e6_linux64_minimal.orig/include/base/cef_build.h 2017-07-19 17:50:42.000000000 +1200 ++++ ./include/base/cef_build.h 2020-10-02 14:43:29.023692000 +1300 +@@ -47,7 +47,7 @@ + #ifndef OS_MACOSX + #define OS_MACOSX 1 + #endif +-#elif defined(__linux__) ++#elif defined(__linux__) || defined(__FreeBSD__) + #ifndef OS_LINUX + #define OS_LINUX 1 + #endif |