WebKit Bugzilla
Attachment 372979 Details for
Bug 199181
: [CMake] Bump cmake_minimum_required version to 3.10
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199181-20190627095921.patch (text/plain), 5.05 KB, created by
Fujii Hironori
on 2019-06-26 17:59:23 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Fujii Hironori
Created:
2019-06-26 17:59:23 PDT
Size:
5.05 KB
patch
obsolete
>Subversion Revision: 246864 >diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog >index b193b4d288b31eced433db5bc3ea43240bb10116..48b0c1c713e8d34566ed0f16ac390fad155e6b9e 100644 >--- a/Source/JavaScriptCore/ChangeLog >+++ b/Source/JavaScriptCore/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-26 Fujii Hironori <Hironori.Fujii@sony.com> >+ >+ [CMake] Bump cmake_minimum_required version to 3.10 >+ https://bugs.webkit.org/show_bug.cgi?id=199181 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * CMakeLists.txt: >+ > 2019-06-26 Basuke Suzuki <Basuke.Suzuki@sony.com> > > [RemoteInspector] Add address argument to listen for RemoteInspectorServer Socket implementation. >diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog >index 69083f3e4f69d28004417d1591f8794d597b9c9f..66fedb5255536591e6b7640bdaf14bf2095b4f90 100644 >--- a/Source/WTF/ChangeLog >+++ b/Source/WTF/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-26 Fujii Hironori <Hironori.Fujii@sony.com> >+ >+ [CMake] Bump cmake_minimum_required version to 3.10 >+ https://bugs.webkit.org/show_bug.cgi?id=199181 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * CMakeLists.txt: >+ > 2019-06-26 Konstantin Tokarev <annulen@yandex.ru> > > Remove unneeded #include <wtf/glib/GRefPtr.h> >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 7d59f2b16d2f1882407e3366e37d77268152e78c..70bc5b6912d15e17cf3c7be5f05e253ee31f5b77 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,14 @@ >+2019-06-26 Fujii Hironori <Hironori.Fujii@sony.com> >+ >+ [CMake] Bump cmake_minimum_required version to 3.10 >+ https://bugs.webkit.org/show_bug.cgi?id=199181 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ No new tests because there is no behavior change. >+ >+ * CMakeLists.txt: >+ > 2019-06-26 Andy Estes <aestes@apple.com> > > [Payment Request] Set state to Closed when show() is called during an active session >diff --git a/Source/WebKitLegacy/ChangeLog b/Source/WebKitLegacy/ChangeLog >index 4366308bd318ffbae9434fc3d2224a989840c1f1..6307b2cafb2a0e210638eeb4f6d1b80bbd53dfdd 100644 >--- a/Source/WebKitLegacy/ChangeLog >+++ b/Source/WebKitLegacy/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-26 Fujii Hironori <Hironori.Fujii@sony.com> >+ >+ [CMake] Bump cmake_minimum_required version to 3.10 >+ https://bugs.webkit.org/show_bug.cgi?id=199181 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * CMakeLists.txt: >+ > 2019-06-05 Alex Christensen <achristensen@webkit.org> > > Progress towards resurrecting Mac CMake build >diff --git a/Source/JavaScriptCore/CMakeLists.txt b/Source/JavaScriptCore/CMakeLists.txt >index 0d495e2f2aa4779efa0419c62dcc532b178e5206..91c4c75db86606ddea4b9772f1343c344f8c90d3 100644 >--- a/Source/JavaScriptCore/CMakeLists.txt >+++ b/Source/JavaScriptCore/CMakeLists.txt >@@ -1,4 +1,4 @@ >-cmake_minimum_required(VERSION 2.8.12) >+cmake_minimum_required(VERSION 3.10) > include(WebKitCommon) > set_property(DIRECTORY . PROPERTY FOLDER "JavaScriptCore") > >diff --git a/Source/WTF/CMakeLists.txt b/Source/WTF/CMakeLists.txt >index 9902ac8acba9322668bd7a4cafae5a91da965736..7c615c5501c3c254b16df7c26b382c94966acdd2 100644 >--- a/Source/WTF/CMakeLists.txt >+++ b/Source/WTF/CMakeLists.txt >@@ -1,4 +1,4 @@ >-cmake_minimum_required(VERSION 2.8.12) >+cmake_minimum_required(VERSION 3.10) > include(WebKitCommon) > set_property(DIRECTORY . PROPERTY FOLDER "WTF") > >diff --git a/Source/WebCore/CMakeLists.txt b/Source/WebCore/CMakeLists.txt >index 9cae1b7f47b68846381b998949fd30519f213689..3ce5166131041deb71c9e7be9557905593798582 100644 >--- a/Source/WebCore/CMakeLists.txt >+++ b/Source/WebCore/CMakeLists.txt >@@ -1,4 +1,4 @@ >-cmake_minimum_required(VERSION 2.8.12) >+cmake_minimum_required(VERSION 3.10) > > include(WebKitCommon) > include(WebCoreMacros.cmake) >diff --git a/Source/WebKitLegacy/CMakeLists.txt b/Source/WebKitLegacy/CMakeLists.txt >index 82681807dba4cceb6263769eb2b57754f10e7c2d..f57bdcaaa09e57e117ccf9852960f3ace0b5fd1e 100644 >--- a/Source/WebKitLegacy/CMakeLists.txt >+++ b/Source/WebKitLegacy/CMakeLists.txt >@@ -1,4 +1,4 @@ >-cmake_minimum_required(VERSION 2.8.12) >+cmake_minimum_required(VERSION 3.10) > include(WebKitCommon) > set_property(DIRECTORY . PROPERTY FOLDER "WebKitLegacy") > >diff --git a/CMakeLists.txt b/CMakeLists.txt >index 9e48108e71e3d314327eee3a6a7238bda632affc..ee0e67f8e9d0595ef1b1b25d078e53f9b2b03367 100644 >--- a/CMakeLists.txt >+++ b/CMakeLists.txt >@@ -8,7 +8,7 @@ > # and loading the cross-compilation settings from CMAKE_TOOLCHAIN_FILE. > # > >-cmake_minimum_required(VERSION 3.7) >+cmake_minimum_required(VERSION 3.10) > > project(WebKit) > >diff --git a/ChangeLog b/ChangeLog >index e44f9ffb00136ac6b0453a2f43b7b3ca127e9ec7..81ce298a1dfda5577f453a08da47ccad17338419 100644 >--- a/ChangeLog >+++ b/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-26 Fujii Hironori <Hironori.Fujii@sony.com> >+ >+ [CMake] Bump cmake_minimum_required version to 3.10 >+ https://bugs.webkit.org/show_bug.cgi?id=199181 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * CMakeLists.txt: >+ > 2019-06-25 Michael Catanzaro <mcatanzaro@igalia.com> > > Fully rename WebKitGTK+ -> WebKitGTK everywhere
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199181
:
372815
| 372979