WebKit Bugzilla
Attachment 372815 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-20190625110046.patch (text/plain), 4.98 KB, created by
Fujii Hironori
on 2019-06-24 19:00:47 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Fujii Hironori
Created:
2019-06-24 19:00:47 PDT
Size:
4.98 KB
patch
obsolete
>Subversion Revision: 246780 >diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog >index b2fef6a3164ab867c58a8f425426bec9603628a0..f2cadd1cb27629006b794e434a03378c22354c79 100644 >--- a/Source/JavaScriptCore/ChangeLog >+++ b/Source/JavaScriptCore/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-24 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-24 Commit Queue <commit-queue@webkit.org> > > Unreviewed, rolling out r246714. >diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog >index 180836181a81dba00456fd5420a14e442254a1e3..c616fcc46b720ee2547d48c24fbe3c09ea1959ea 100644 >--- a/Source/WTF/ChangeLog >+++ b/Source/WTF/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-24 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-23 Simon Fraser <simon.fraser@apple.com> > > Add OverflowScrollProxyNodes to the scrolling tree >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 3ef19a34d5e748f2b6f6a5b7969334e0208af632..696c1a246c6c961fe3785f40c04098f849c6033a 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,14 @@ >+2019-06-24 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-24 Commit Queue <commit-queue@webkit.org> > > Unreviewed, rolling out r246714. >diff --git a/Source/WebKitLegacy/ChangeLog b/Source/WebKitLegacy/ChangeLog >index 4366308bd318ffbae9434fc3d2224a989840c1f1..68275bbef8627ece0f74c3431ba894f47eebd933 100644 >--- a/Source/WebKitLegacy/ChangeLog >+++ b/Source/WebKitLegacy/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-24 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 459ea7b839e6e8bccc348446020188df7cbc3d5d..44b3ebd53b84bc9d53929bda7e30809b6d87b753 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 fcefebb7b070d43eacb8cce13a753bbced12021c..39bc228ebcc9e0ae90ec96093af62e773128ce0e 100644 >--- a/ChangeLog >+++ b/ChangeLog >@@ -1,3 +1,12 @@ >+2019-06-24 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-21 Michael Catanzaro <mcatanzaro@igalia.com> > > [WPE][GTK] Bump minimum versions of GLib, GTK, libsoup, ATK, GStreamer, and Cairo
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