Title: [248032] trunk/Source/WebKit
Revision
248032
Author
timothy_hor...@apple.com
Date
2019-07-31 00:37:47 -0700 (Wed, 31 Jul 2019)

Log Message

Remove WebKit2 Makefile guards for pre-Snow Leopard macOS
https://bugs.webkit.org/show_bug.cgi?id=200294

Reviewed by Dan Bernstein.

* Makefile:
It seems ... unlikely ... that anyone is trying to build
trunk WebKit for Leopard or prior.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (248031 => 248032)


--- trunk/Source/WebKit/ChangeLog	2019-07-31 07:07:28 UTC (rev 248031)
+++ trunk/Source/WebKit/ChangeLog	2019-07-31 07:37:47 UTC (rev 248032)
@@ -1,3 +1,14 @@
+2019-07-31  Tim Horton  <timothy_hor...@apple.com>
+
+        Remove WebKit2 Makefile guards for pre-Snow Leopard macOS
+        https://bugs.webkit.org/show_bug.cgi?id=200294
+
+        Reviewed by Dan Bernstein.
+
+        * Makefile:
+        It seems ... unlikely ... that anyone is trying to build
+        trunk WebKit for Leopard or prior.
+
 2019-07-30  Fujii Hironori  <hironori.fu...@sony.com>
 
         [WebKit] Add PageLoadState::Observer C API

Modified: trunk/Source/WebKit/Makefile (248031 => 248032)


--- trunk/Source/WebKit/Makefile	2019-07-31 07:07:28 UTC (rev 248031)
+++ trunk/Source/WebKit/Makefile	2019-07-31 07:37:47 UTC (rev 248032)
@@ -1,20 +1 @@
-# Build WebKit2 only on SnowLeopard and later.
-
-OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
-BUILD_WEBKIT2 = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
-
-ifeq "$(BUILD_WEBKIT2)" "YES"
-
 include ../Makefile.shared
-
-else
-
-all: ;
-
-debug d development dev develop: ;
-
-release r deployment dep deploy: ;
-
-clean: ;
-
-endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to