Title: [156384] trunk/Source/WebKit2
Revision
156384
Author
[email protected]
Date
2013-09-24 22:37:06 -0700 (Tue, 24 Sep 2013)

Log Message

Remove the Windows-specific rules from WebKit2's DerivedSources.make, Windows is not supported anymore
https://bugs.webkit.org/show_bug.cgi?id=121895

Reviewed by Alexey Proskuryakov.

* DerivedSources.make:
Remove Windows-specific rules, and, now that only the Mac is using this file, remove the
Mac checks.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (156383 => 156384)


--- trunk/Source/WebKit2/ChangeLog	2013-09-25 05:22:59 UTC (rev 156383)
+++ trunk/Source/WebKit2/ChangeLog	2013-09-25 05:37:06 UTC (rev 156384)
@@ -1,3 +1,14 @@
+2013-09-24  Sam Weinig  <[email protected]>
+
+        Remove the Windows-specific rules from WebKit2's DerivedSources.make, Windows is not supported anymore
+        https://bugs.webkit.org/show_bug.cgi?id=121895
+
+        Reviewed by Alexey Proskuryakov.
+
+        * DerivedSources.make:
+        Remove Windows-specific rules, and, now that only the Mac is using this file, remove the
+        Mac checks.
+
 2013-09-24  Anders Carlsson  <[email protected]>
 
         Only allow rvalues to be passed as synchronous message replies

Modified: trunk/Source/WebKit2/DerivedSources.make (156383 => 156384)


--- trunk/Source/WebKit2/DerivedSources.make	2013-09-25 05:22:59 UTC (rev 156383)
+++ trunk/Source/WebKit2/DerivedSources.make	2013-09-25 05:37:06 UTC (rev 156384)
@@ -1,4 +1,4 @@
-# Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
+# Copyright (C) 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions
@@ -134,10 +134,7 @@
 	@echo Generating message receiver for $*...
 	@python $(WebKit2)/Scripts/generate-messages-header.py $< > $@
 
-# Mac-specific rules
 
-ifeq ($(PLATFORM_NAME),macosx)
-
 FRAMEWORK_FLAGS = $(shell echo $(BUILT_PRODUCTS_DIR) $(FRAMEWORK_SEARCH_PATHS) | perl -e 'print "-F " . join(" -F ", split(" ", <>));')
 HEADER_FLAGS = $(shell echo $(BUILT_PRODUCTS_DIR) $(HEADER_SEARCH_PATHS) | perl -e 'print "-I" . join(" -I", split(" ", <>));')
 
@@ -164,18 +161,3 @@
 	@echo Pre-processing $* sandbox profile...
 	$(CC) $(SDK_FLAGS) $(TEXT_PREPROCESSOR_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" $< > $@
 
-endif # macosx
-
-# ------------------------
-
-# Windows-specific rules
-
-ifeq ($(OS),Windows_NT)
-
-all : HeaderDetection.h
-
-HeaderDetection.h : DerivedSources.make
-	if [ -f "$(WEBKITLIBRARIESDIR)/include/WebKitQuartzCoreAdditions/WebKitQuartzCoreAdditionsBase.h" ] && [ ! -f "$(WEBKITLIBRARIESDIR)/include/cairo/cairo.h" ]; then echo "#define HAVE_WKQCA 1" > $@; else echo > $@; fi
-	if [ -f "$(WEBKITLIBRARIESDIR)/include/AVFoundationCF/AVCFBase.h" ]; then echo "#define HAVE_AVCF 1" >> $@; else echo >> $@; fi
-
-endif # Windows_NT
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to