Title: [164714] trunk/Source/WebKit2
Revision
164714
Author
[email protected]
Date
2014-02-26 05:40:26 -0800 (Wed, 26 Feb 2014)

Log Message

Inspector server should be enabled only when the web sockets is enabled too.
https://bugs.webkit.org/show_bug.cgi?id=129304

Patch by Gergo Balogh <[email protected]> on 2014-02-26
Reviewed by Csaba Osztrogonác.

* config.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164713 => 164714)


--- trunk/Source/WebKit2/ChangeLog	2014-02-26 11:32:43 UTC (rev 164713)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-26 13:40:26 UTC (rev 164714)
@@ -1,3 +1,12 @@
+2014-02-26  Gergo Balogh  <[email protected]>
+
+        Inspector server should be enabled only when the web sockets is enabled too.
+        https://bugs.webkit.org/show_bug.cgi?id=129304
+
+        Reviewed by Csaba Osztrogonác.
+
+        * config.h:
+
 2014-02-26  Carlos Garcia Campos  <[email protected]>
 
         Unreviewed. Fix GTK+ build after r164702.

Modified: trunk/Source/WebKit2/config.h (164713 => 164714)


--- trunk/Source/WebKit2/config.h	2014-02-26 11:32:43 UTC (rev 164713)
+++ trunk/Source/WebKit2/config.h	2014-02-26 13:40:26 UTC (rev 164714)
@@ -71,7 +71,7 @@
 #define PLUGIN_ARCHITECTURE(ARCH) (defined PLUGIN_ARCHITECTURE_##ARCH && PLUGIN_ARCHITECTURE_##ARCH)
 
 #ifndef ENABLE_INSPECTOR_SERVER
-#if ENABLE(INSPECTOR) && (PLATFORM(GTK) || PLATFORM(EFL))
+#if ENABLE(INSPECTOR) && ENABLE(WEB_SOCKETS) && (PLATFORM(GTK) || PLATFORM(EFL))
 #define ENABLE_INSPECTOR_SERVER 1
 #endif
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to