1 2014-04-08 Geoffrey Garen <ggaren@apple.com>
3 Build bmalloc on iOS too
4 https://bugs.webkit.org/show_bug.cgi?id=131381
6 Reviewed by Andreas Kling.
8 * Source/Makefile: Build it.
10 2014-04-07 Geoffrey Garen <ggaren@apple.com>
13 https://bugs.webkit.org/show_bug.cgi?id=131333
15 Reviewed by Mark Rowe.
19 * WebKitBuild/Debug: Added.
21 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
23 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
24 https://bugs.webkit.org/show_bug.cgi?id=131257
26 Reviewed by Gyuyoung Kim.
28 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
30 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
32 [GTK] Stop trying to install WebKit1 documentation
33 https://bugs.webkit.org/show_bug.cgi?id=131278
35 Reviewed by Martin Robinson.
37 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
38 built anymore since r166584. This fixes `make install'.
40 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
42 Web Replay: capture and replay wheel events and scroll commands
43 https://bugs.webkit.org/show_bug.cgi?id=129402
45 Reviewed by Timothy Hatcher.
47 * ManualTests/inspector/replay-wheel-events.html: Added.
49 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
51 [GTK][CMake] Remove FindXt.cmake.
52 https://bugs.webkit.org/show_bug.cgi?id=131227
54 Reviewed by Anders Carlsson.
56 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
58 * Source/cmake/FindXt.cmake: Removed.
59 * Source/cmake/OptionsGTK.cmake:
61 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
63 [EFL] Build error due to changed path of generated js files.
64 https://bugs.webkit.org/show_bug.cgi?id=131215
66 Reviewed by Gyuyoung Kim.
68 r166648 fixed the generation of some .js files on GTK. Due to some
69 changes in the paths it causes a build error on EFL.
71 * Source/PlatformEfl.cmake:
72 Replaced path for two derived source files.
74 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
76 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
77 https://bugs.webkit.org/show_bug.cgi?id=131095
79 Reviewed by Martin Robinson.
81 One needs to take into account OpenGL's include directory found via
82 find_package() when looking for glx.h, since if the former is a
83 non-standard location the latter will also be. If this is not it is
84 possible that OpenGL is found but GLX support is not properly detected.
86 * Source/cmake/OptionsGTK.cmake:
88 2014-04-02 Martin Robinson <mrobinson@igalia.com>
90 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
91 https://bugs.webkit.org/show_bug.cgi?id=130343
93 Reviewed by Gustavo Noronha Silva.
95 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
97 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
99 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
101 [CMake] Drop port check from FindEGL.cmake.
102 https://bugs.webkit.org/show_bug.cgi?id=131091
104 Reviewed by Gyuyoung Kim.
106 There is no reason to mark some variables as advanced only for the
109 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
110 as advanced regardless of the port.
112 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
114 Fix the !ENABLE(BATTERY_STATUS) build
115 https://bugs.webkit.org/show_bug.cgi?id=130183
117 Reviewed by Anders Carlsson.
119 * Source/cmake/OptionsEfl.cmake:
121 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
123 [CMake][GTK] Do not expand variables twice in if() checks.
124 https://bugs.webkit.org/show_bug.cgi?id=130964
126 Reviewed by Martin Robinson.
128 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
129 to be checked by the if clause. This is not what we want, and
130 configuration fails when, say, GLX support wasn't found as the if
131 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
133 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
136 2014-03-31 Martin Robinson <mrobinson@igalia.com>
138 [GTK] Remove scripts code only applicable to autotools
139 https://bugs.webkit.org/show_bug.cgi?id=130841
141 Reviewed by Anders Carlsson.
143 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
145 2014-03-31 Martin Robinson <mrobinson@igalia.com>
147 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
148 https://bugs.webkit.org/show_bug.cgi?id=130936
150 Reviewed by Carlos Garcia Campos.
152 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
154 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
156 [GTK] Add support for GTK3 plugins
157 https://bugs.webkit.org/show_bug.cgi?id=130599
159 Reviewed by Martin Robinson.
161 * Source/cmake/OptionsGTK.cmake:
163 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
165 [EFL] Bump glib version from 2.36 to 2.38
166 https://bugs.webkit.org/show_bug.cgi?id=130886
168 Reviewed by Csaba Osztrogonác.
170 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
172 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
174 [CSS Shapes] Remove shape-inside support
175 https://bugs.webkit.org/show_bug.cgi?id=130698
177 Reviewed by David Hyatt.
179 * Source/cmake/WebKitFeatures.cmake:
180 * Source/cmakeconfig.h.cmake:
182 2014-03-25 Martin Robinson <mrobinson@igalia.com>
184 [GTK] Remove the autotools build
185 https://bugs.webkit.org/show_bug.cgi?id=130717
187 Reviewed by Anders Carlsson.
189 * .gitignore: Remove references to autotools files.
190 * GNUmakefile.am: Removed.
191 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
192 * Source/autotools/CustomMacros.m4: Removed.
193 * Source/autotools/FindDependencies.m4: Removed.
194 * Source/autotools/PrintBuildConfiguration.m4: Removed.
195 * Source/autotools/ReadCommandLineArguments.m4: Removed.
196 * Source/autotools/SetupAutoconfHeader.m4: Removed.
197 * Source/autotools/SetupAutomake.m4: Removed.
198 * Source/autotools/SetupCompilerFlags.m4: Removed.
199 * Source/autotools/SetupLibtool.m4: Removed.
200 * Source/autotools/SetupWebKitFeatures.m4: Removed.
201 * Source/autotools/Versions.m4: Removed.
202 * Source/autotools/acinclude.m4: Removed.
203 * Source/autotools/dolt.m4: Removed.
204 * Source/autotools/gsettings.m4: Removed.
205 * Source/cmake/OptionsGTK.cmake:
206 * autogen.sh: Removed.
207 * configure.ac: Removed.
209 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
211 [EFL] Add ARM64 build support
212 https://bugs.webkit.org/show_bug.cgi?id=130506
214 Rubber stamped by Gyuyoung Kim.
216 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
218 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
220 [EFL][WK2] Add NETWORK_PROCESS build option
221 https://bugs.webkit.org/show_bug.cgi?id=130131
223 Reviewed by Gyuyoung Kim.
225 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
228 * Source/cmake/OptionsEfl.cmake:
230 2014-03-24 Brian Burg <bburg@apple.com>
232 Web Replay: capture and replay keyboard events
233 https://bugs.webkit.org/show_bug.cgi?id=130314
235 Reviewed by Joseph Pecoraro.
237 * ManualTests/inspector/replay-keyboard-events.html: Added.
239 2014-03-24 Sangyong Park <sy302.park@gmail.com>
241 [EFL] Inspector page is not loaded.
242 https://bugs.webkit.org/show_bug.cgi?id=130661
244 Reviewed by Gyuyoung Kim.
246 Inspector page is not loaded, because some javascript files are not installed.
247 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
249 * Source/PlatformEfl.cmake:
251 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
253 [EFL][GTK] Get CMake to find Freetype2 properly
254 https://bugs.webkit.org/show_bug.cgi?id=130150
256 Reviewed by Martin Robinson.
258 Newer versions of CMake are not able to find Freetype2 correctly.
259 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
260 freetype2 repo, because a completely different version number is found in freetype2.pc.
262 * Source/cmake/FindFreetype2.cmake: Added.
263 * Source/cmake/OptionsEfl.cmake:
264 * Source/cmake/OptionsGTK.cmake:
266 2014-03-20 Brian Burg <bburg@apple.com>
268 Web Replay: capture and replay mouse events
269 https://bugs.webkit.org/show_bug.cgi?id=129395
271 Reviewed by Joseph Pecoraro.
273 Create a manual test for capture/replay of mouse events.
274 Copy over the crypto-md5.js library from SunSpider.
276 * ManualTests/inspector/replay-mouse-events.html: Added.
277 * ManualTests/inspector/resources/crypto-md5.js: Added.
279 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
281 [GTK][CMake] Add support for building with Clang
282 https://bugs.webkit.org/show_bug.cgi?id=130260
284 Reviewed by Martin Robinson.
286 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
287 to the list C compiler flags as constructed by CMake.
288 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
289 compiler option to suppress verbose warnings about arguments that went unused by the driver.
290 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
291 -fno-tree-dce should be used only for GCC.
292 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
293 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
295 2014-03-20 Commit Queue <commit-queue@webkit.org>
297 Unreviewed, rolling out r165962.
298 https://bugs.webkit.org/show_bug.cgi?id=130512
300 It broke the build (Requested by Ossy on #webkit).
304 "[EFL][GTK] Get CMake to find Freetype2 properly"
305 https://bugs.webkit.org/show_bug.cgi?id=130150
306 http://trac.webkit.org/changeset/165962
308 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
310 [EFL][GTK] Get CMake to find Freetype2 properly
311 https://bugs.webkit.org/show_bug.cgi?id=130150
313 Reviewed by Csaba Osztrogonác.
315 Newer versions of CMake are not able to find Freetype2 correctly.
316 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
317 freetype2 repo, because a completely different version number is found in freetype2.pc.
319 * Source/cmake/FindFreetype2.cmake: Added.
320 * Source/cmake/OptionsEfl.cmake:
321 * Source/cmake/OptionsGTK.cmake:
323 2014-03-17 Brendan Long <b.long@cablelabs.com>
325 [GStreamer] human readable language code for tracks
326 https://bugs.webkit.org/show_bug.cgi?id=124514
328 Reviewed by Martin Robinson.
330 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
331 * Source/cmake/FindGStreamer.cmake: Same.
332 * Source/cmake/OptionsEfl.cmake: Same.
333 * Source/cmake/OptionsGTK.cmake: Same.
335 2014-03-17 Martin Robinson <mrobinson@igalia.com>
337 [GTK][CMake] Credential storage is not enabled
338 https://bugs.webkit.org/show_bug.cgi?id=130149
340 Reviewed by Philippe Normand.
342 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
343 and look libsecret when it's enabled.
344 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
346 2014-03-17 Martin Robinson <mrobinson@igalia.com>
348 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
349 https://bugs.webkit.org/show_bug.cgi?id=130155
351 Reviewed by Philippe Normand.
353 * Source/cmake/FindGTKUnixPrint.cmake: Added.
354 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
355 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
357 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
359 [EFL] Enable TOUCH_SLIDER macro.
360 https://bugs.webkit.org/show_bug.cgi?id=130186
362 Reviewed by Gyuyoung Kim.
364 * Source/cmake/OptionsEfl.cmake:
366 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
368 [GTK][CMake] Build with -fno-rtti
369 https://bugs.webkit.org/show_bug.cgi?id=130261
371 Reviewed by Martin Robinson.
373 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
374 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
375 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
376 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
377 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
378 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
379 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
381 2014-03-16 Brendan Long <b.long@cablelabs.com>
383 [GStreamer] CMake doesn't find the include path for gstreamer-base
384 https://bugs.webkit.org/show_bug.cgi?id=130098
386 Reviewed by Philippe Normand.
388 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
390 2014-03-14 Maciej Stachowiak <mjs@apple.com>
392 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
393 https://bugs.webkit.org/show_bug.cgi?id=130276
394 <rdar://problem/16266927>
396 Reviewed by Simon Fraser.
398 * ManualTests/NPN_Invoke/Info.plist:
399 * ManualTests/NPN_Invoke/main.c:
400 * ManualTests/accessibility/resources/AppletTest.java:
402 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
404 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
405 https://bugs.webkit.org/show_bug.cgi?id=130258
407 Reviewed by Martin Robinson.
409 GCC compilers 4.7 and later are supported, so there's no need for disabling
410 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
412 * Source/cmake/WebKitHelpers.cmake:
414 2014-03-14 Landry Breuil <landry@openbsd.org>
416 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
417 https://bugs.webkit.org/show_bug.cgi?id=129966
419 Reviewed by Andreas Kling.
421 * Source/autotools/CheckSystemAndBasicDependencies.m4:
422 * Source/autotools/SetupAutomake.m4:
424 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
426 [CMake] Failure to link with older installations of WebP
427 https://bugs.webkit.org/show_bug.cgi?id=130195
429 Reviewed by Gustavo Noronha Silva.
431 Fix the issue by using a temporary variable as the output parameter
432 to check_include_files(), setting WEBP_FOUND accordingly later.
434 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
435 variable in check_include_files(), as it will lead to misleading
436 results (will always be FALSE). Use a temporary variable instead
437 and explicitly set WEBP_FOUND to TRUE later if needed.
439 2014-03-12 Martin Robinson <mrobinson@igalia.com>
441 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
442 https://bugs.webkit.org/show_bug.cgi?id=130170
444 Reviewed by Daniel Bates.
446 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
447 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
448 fake "TestRunner" generator.
450 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
452 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
453 https://bugs.webkit.org/show_bug.cgi?id=130014
455 Reviewed by Martin Robinson.
457 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
459 * Source/cmake/OptionsGTK.cmake:
460 * Source/cmakeconfig.h.cmake:
462 2014-03-12 Martin Robinson <mrobinson@igalia.com>
464 [GTK][CMAKE] Too verbose build output
465 https://bugs.webkit.org/show_bug.cgi?id=130076
467 Reviewed by Carlos Garcia Campos.
469 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
470 works around an issue where cmake --build doesn't support ninja's pretty printing.
472 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
474 [GTK] Add support for Geoclue2
475 https://bugs.webkit.org/show_bug.cgi?id=120185
477 Reviewed by Carlos Garcia Campos.
479 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
481 Add support for Geoclue2 using autotools.
483 * Source/autotools/FindDependencies.m4: Add support for handling
484 both Geoclue 1.0 and 2.0.
485 * Source/autotools/PrintBuildConfiguration.m4: Print the version
486 of geoclue that is being used.
487 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
488 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
489 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
491 Add support for Geoclue2 using CMake.
493 * Source/cmake/FindGeoClue2.cmake: Added.
494 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
495 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
497 2014-03-10 Martin Robinson <mrobinson@igalia.com>
499 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
500 https://bugs.webkit.org/show_bug.cgi?id=130016
502 Reviewed by Carlos Garcia Campos.
504 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
505 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
506 HTML version will still run when building the distribution tarball.
508 2014-03-10 Martin Robinson <mrobinson@igalia.com>
510 [GTK] [CMake] Clean up library linking
511 https://bugs.webkit.org/show_bug.cgi?id=129782
513 Reviewed by Philippe Normand.
515 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
516 so that unused symbols are not dropped. This is useful when building up shared libraries
517 from convenience libraries.
519 2014-03-08 Landry Breuil <landry@openbsd.org>
521 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
522 https://bugs.webkit.org/show_bug.cgi?id=129973
524 Reviewed by Martin Robinson.
526 * Source/autotools/FindDependencies.m4:
528 2014-03-06 Anders Carlsson <andersca@apple.com>
530 Build WebKit2 before building WebKit
531 https://bugs.webkit.org/show_bug.cgi?id=129831
532 <rdar://problem/15920020>
534 Reviewed by Dan Bernstein.
537 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
538 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
540 2014-03-06 Commit Queue <commit-queue@webkit.org>
542 Unreviewed, rolling out r165193.
543 http://trac.webkit.org/changeset/165193
544 https://bugs.webkit.org/show_bug.cgi?id=129823
546 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
547 env confuses libtool (Requested by zdobersek on #webkit).
549 * Source/autotools/SetupCompilerFlags.m4:
551 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
553 [GTK][Autotools] Default to libc++ when compiling with Clang
554 https://bugs.webkit.org/show_bug.cgi?id=129798
556 Reviewed by Anders Carlsson.
558 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
559 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
560 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
562 2014-03-05 Martin Robinson <mrobinson@igalia.com>
564 [CMake] Ninja generator builds fail with "Argument list too long"
565 https://bugs.webkit.org/show_bug.cgi?id=129771
567 Reviewed by Daniel Bates.
569 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
570 by forcing the use of response files.
572 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
574 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
575 https://bugs.webkit.org/show_bug.cgi?id=108330
577 Reviewed by Martin Robinson.
579 In order to get non-shared debug builds, this patch applied T option for
580 thin archives to the flags passed to ar when cmake based ports build on linux.
581 In addition, applied u option which avoids adding a file twice.
583 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
584 * Source/cmake/OptionsEfl.cmake:
585 Removed error messages for non-shared-core debug builds.
586 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
588 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
590 [GTK] Build the Udis86 disassembler
591 https://bugs.webkit.org/show_bug.cgi?id=129679
593 Reviewed by Michael Saboff.
595 * GNUmakefile.am: Add the Udis86_nosources variable.
596 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
598 2014-03-04 Martin Robinson <mrobinson@igalia.com>
600 [GTK] Simplify the GObject DOM bindings API break check into one step
601 https://bugs.webkit.org/show_bug.cgi?id=129571
603 Reviewed by Carlos Garcia Campos.
605 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
606 Add the check to 'make check.'
608 2014-03-04 Martin Robinson <mrobinson@igalia.com>
610 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
611 https://bugs.webkit.org/show_bug.cgi?id=129502
613 Reviewed by Carlos Garcia Campos.
615 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
617 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
619 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
620 https://bugs.webkit.org/show_bug.cgi?id=129031
622 Reviewed by Csaba Osztrogonác.
624 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
626 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
628 [GTK] WebKit2WebExtension GIR can't be used in vala
629 https://bugs.webkit.org/show_bug.cgi?id=127179
631 Reviewed by Martin Robinson.
633 Add a different pkg-config file for the web extensions API.
635 * Source/cmake/OptionsGTK.cmake:
638 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
640 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
641 https://bugs.webkit.org/show_bug.cgi?id=129575
643 Reviewed by Philippe Normand.
645 * Source/cmake/OptionsEfl.cmake:
646 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
647 * Source/cmake/OptionsGTK.cmake:
648 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
649 * Source/cmake/WebKitFeatures.cmake:
650 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
651 * Source/cmakeconfig.h.cmake:
652 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
654 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
656 Enable support of X-Content-Type-Options: nosniff header for EFL
657 https://bugs.webkit.org/show_bug.cgi?id=128673
659 Reviewed by Gyuyoung Kim.
661 * Source/cmake/OptionsEfl.cmake:
662 Enabled NOSNIFF feature flag for EFL.
664 2014-02-27 Koop Mast <kwm@FreeBSD.org>
666 Fallback on checking for libz manualy if zlib.pc isn't available.
667 https://bugs.webkit.org/show_bug.cgi?id=127061
669 Reviewed by Gustavo Noronha Silva.
671 * Source/autotools/FindDependencies.m4:
673 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
675 [CSS Grid Layout] Add ENABLE flag
676 https://bugs.webkit.org/show_bug.cgi?id=129153
678 Reviewed by Simon Fraser.
680 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
681 autotools build systems. The feature is disabled by default for
684 * Source/autotools/SetupWebKitFeatures.m4:
685 * Source/cmake/OptionsEfl.cmake:
686 * Source/cmake/OptionsGTK.cmake:
687 * Source/cmake/WebKitFeatures.cmake:
688 * Source/cmakeconfig.h.cmake:
690 2014-02-24 Martin Robinson <mrobinson@igalia.com>
692 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
693 https://bugs.webkit.org/show_bug.cgi?id=128417
695 Reviewed by Carlos Garcia Campos.
697 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
698 may one day be used in the webkitdom config file generation.
700 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
702 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
703 https://bugs.webkit.org/show_bug.cgi?id=128961
705 Reviewed by Ryosuke Niwa.
707 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
708 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
709 EFL port needs not to check "uninitialized" build warning as error in order to
710 adjust the option to EFL port. This patch don't take it as error temporarily.
712 * Source/cmake/OptionsEfl.cmake:
713 * Source/cmake/WebKitHelpers.cmake:
715 2014-02-16 Martin Robinson <mrobinson@igalia.com>
717 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
718 https://bugs.webkit.org/show_bug.cgi?id=128434
720 Reviewed by Anders Carlsson.
722 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
723 port as well as -fno-tree-dce, like it is used in the autotools build.
725 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
727 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
728 https://bugs.webkit.org/show_bug.cgi?id=128799
730 Reviewed by Philippe Normand.
732 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
733 if building with autotools. cmake system has enabled it as default. So I propose
734 enabling VIDEO_TRACK as well.
736 * Source/autotools/SetupWebKitFeatures.m4:
738 2014-02-14 Commit Queue <commit-queue@webkit.org>
740 Unreviewed, rolling out r164090.
741 http://trac.webkit.org/changeset/164090
742 https://bugs.webkit.org/show_bug.cgi?id=128807
744 It broke the EFL build (Requested by Ossy on #webkit).
746 * Source/cmake/OptionsCommon.cmake:
747 * Source/cmake/OptionsEfl.cmake:
749 2014-02-09 Martin Robinson <mrobinson@igalia.com>
751 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
752 https://bugs.webkit.org/show_bug.cgi?id=128434
754 Extend a fix for EFL to all ports that use GCC. Also include further fixes
755 that were applied only to the autotools build.
757 Reviewed by Gyuyoung Kim.
759 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
760 as -fno-tree-dce, which is necessary for GTK+.
761 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
763 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
765 [GTK][CMake] Generate GObject DOM bindings .symbols files
766 https://bugs.webkit.org/show_bug.cgi?id=126210
768 Reviewed by Martin Robinson.
770 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
771 for documentation generation.
773 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
775 [GTK] MEDIA_CONTROLS_SCRIPT support
776 https://bugs.webkit.org/show_bug.cgi?id=123097
778 Reviewed by Jer Noble.
780 Part of the Autotools and CMake structure to build the media
783 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
784 controls script by default.
785 * Source/cmake/OptionsGTK.cmake: Activated the media controls
787 * Source/cmake/WebKitFeatures.cmake: Created the option to
788 activate the controls script.
789 * Source/cmakeconfig.h.cmake: Created the define template the the
790 media controls script.
792 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
794 [GDB] Add .gdbinit to the list of files ignored by Git
795 https://bugs.webkit.org/show_bug.cgi?id=128455
797 Reviewed by Anders Carlsson.
799 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
800 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
801 that covers already removed entries.
803 2014-02-11 Oliver Hunt <oliver@apple.com>
805 Make it possible to implement JS builtins in JS
806 https://bugs.webkit.org/show_bug.cgi?id=127887
808 Reviewed by Michael Saboff.
811 * Source/cmake/gtest/CMakeLists.txt:
813 2014-02-12 Ryan Lortie <desrt@desrt.ca>
815 'ar T' is not portable and breaks the build on FreeBSD
816 https://bugs.webkit.org/show_bug.cgi?id=128596
818 Reviewed by Gustavo Noronha Silva.
820 Create thin archives only if we are using GNU ar.
822 * Source/autotools/SetupLibtool.m4:
824 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
826 Add the CSS_SHAPE_INSIDE to CMake feature list
827 https://bugs.webkit.org/show_bug.cgi?id=128530
829 Reviewed by Gyuyoung Kim.
831 CSS_SHAPE_INSIDE flag was added in r163333,
832 this patch is adding this flag to CMake feature list.
834 * Source/cmake/WebKitFeatures.cmake:
835 * Source/cmakeconfig.h.cmake:
837 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
839 [GTK] Enable touch features
840 https://bugs.webkit.org/show_bug.cgi?id=98931
842 Reviewed by Carlos Garcia Campos.
844 * Source/autotools/SetupWebKitFeatures.m4:
845 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
847 2014-02-06 Andreas Kling <akling@apple.com>
849 Remove unused ENABLE(REPAINT_THROTTLING) flag.
850 <https://webkit.org/b/128329>
852 Reviewed by Antti Koivisto.
854 * Source/cmake/WebKitFeatures.cmake:
855 * Source/cmakeconfig.h.cmake:
857 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
859 [iOS] make should build WebKit2
860 https://bugs.webkit.org/show_bug.cgi?id=128351
862 Reviewed by Daniel Bates.
866 2014-02-05 Andreas Kling <akling@apple.com>
868 Remove ENABLE(DIRECTORY_UPLOAD).
869 <https://webkit.org/b/128275>
871 Rubber-stamped by Ryosuke Niwa.
873 * Source/autotools/SetupWebKitFeatures.m4:
874 * Source/cmake/WebKitFeatures.cmake:
876 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
878 Remove ENABLE(SVG) guards
879 https://bugs.webkit.org/show_bug.cgi?id=127991
881 Reviewed by Sam Weinig.
883 * Source/autotools/FindDependencies.m4:
884 * Source/autotools/PrintBuildConfiguration.m4:
885 * Source/autotools/ReadCommandLineArguments.m4:
886 * Source/autotools/SetupAutomake.m4:
887 * Source/autotools/SetupWebKitFeatures.m4:
888 * Source/cmake/OptionsEfl.cmake:
889 * Source/cmake/OptionsGTK.cmake:
890 * Source/cmake/WebKitFeatures.cmake:
891 * Source/cmakeconfig.h.cmake:
893 2014-02-04 Andreas Kling <akling@apple.com>
895 Remove <iframe seamless> support.
896 <https://webkit.org/b/128213>
898 Rubber-stamped by Antti Koivisto.
900 * Source/autotools/SetupWebKitFeatures.m4:
901 * Source/cmake/WebKitFeatures.cmake:
902 * Source/cmakeconfig.h.cmake:
904 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
906 Remove LEGACY_VIEWPORT_ADAPTION
907 https://bugs.webkit.org/show_bug.cgi?id=128028
909 Reviewed by Anders Carlsson.
911 * Source/cmake/WebKitFeatures.cmake:
912 * Source/cmakeconfig.h.cmake:
914 2014-01-31 Oliver Hunt <oliver@apple.com>
916 Rollout r163195 and related patches
919 * Source/cmake/gtest/CMakeLists.txt:
921 2014-01-29 Oliver Hunt <oliver@apple.com>
923 Make it possible to implement JS builtins in JS
924 https://bugs.webkit.org/show_bug.cgi?id=127887
926 Reviewed by Michael Saboff.
930 * Source/cmake/gtest/CMakeLists.txt:
932 2014-01-30 Martin Robinson <mrobinson@igalia.com>
934 [GTK] [CMake] Add support for building against GTK+ 2
935 https://bugs.webkit.org/show_bug.cgi?id=127959
937 Reviewed by Anders Carlsson.
939 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
940 library API version. When using GTK 2 do not build WebKit 2.
942 2014-01-30 Martin Robinson <mrobinson@igalia.com>
944 [GTK] [CMake] Add a "make dist" target
945 https://bugs.webkit.org/show_bug.cgi?id=116378
947 Reviewed by Gustavo Noronha Silva.
949 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
950 script and then turning the tarfile into a LZMA compressed file.
952 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
954 [GTK] Only disable -ftree-dce optimization when compiling with GCC
955 https://bugs.webkit.org/show_bug.cgi?id=127911
957 Reviewed by Carlos Garcia Campos.
959 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
960 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
961 at the moment, but is added for the sake of completeness.
963 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
965 [EFL] Fix the regression caused by the jsCStack branch merge
966 https://bugs.webkit.org/show_bug.cgi?id=127898
968 Reviewed by Zoltan Herczeg.
970 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
972 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
974 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
975 https://bugs.webkit.org/show_bug.cgi?id=127845
977 Reviewed by Joseph Pecoraro.
979 * Source/autotools/SetupWebKitFeatures.m4:
981 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
983 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
984 https://bugs.webkit.org/show_bug.cgi?id=127840
986 Reviewed by Mark Lam.
988 * Source/cmake/WebKitFeatures.cmake:
989 * Source/cmakeconfig.h.cmake:
991 2014-01-25 Darin Adler <darin@apple.com>
993 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
994 https://bugs.webkit.org/show_bug.cgi?id=127623
996 Reviewed by Anders Carlsson.
998 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
999 * Source/cmake/OptionsGTK.cmake: Ditto.
1000 * Source/cmake/OptionsWinCE.cmake: Ditto.
1002 2014-01-23 Max Vujovic <mvujovic@adobe.com>
1004 Remove CSS Custom Filters code and tests
1005 https://bugs.webkit.org/show_bug.cgi?id=127382
1007 Reviewed by Simon Fraser.
1009 * Source/autotools/FindDependencies.m4:
1010 * Source/autotools/SetupWebKitFeatures.m4:
1011 * Source/cmake/WebKitFeatures.cmake:
1012 * Source/cmakeconfig.h.cmake:
1014 2014-01-22 Martin Robinson <mrobinson@igalia.com>
1016 [GTK][CMake] Add support for building the NetworkProcess
1017 https://bugs.webkit.org/show_bug.cgi?id=127195
1019 Reviewed by Daniel Bates.
1021 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
1022 a name like the WebProcess.
1024 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
1026 [CMAKE] Remove Nix from CMake scripts
1027 https://bugs.webkit.org/show_bug.cgi?id=127264
1029 Reviewed by Anders Carlsson.
1032 * Source/CMakeLists.txt:
1033 * Source/cmake/FindEGL.cmake:
1034 * Source/cmake/OptionsCommon.cmake:
1036 2014-01-18 Anders Carlsson <andersca@apple.com>
1038 Remove ENABLE_THREADED_HTML_PARSER defines everywhere
1039 https://bugs.webkit.org/show_bug.cgi?id=127225
1041 Reviewed by Andreas Kling.
1043 This concludes the removal of over 8.8 million lines of threaded parser code.
1045 * Source/autotools/SetupWebKitFeatures.m4:
1046 * Source/cmake/WebKitFeatures.cmake:
1047 * Source/cmakeconfig.h.cmake:
1049 2014-01-18 Lauro Neto <lauro.neto@openbossa.org>
1051 Remove Nix files from WebCore
1052 https://bugs.webkit.org/show_bug.cgi?id=127176
1054 Reviewed by Anders Carlsson.
1056 * Source/cmake/OptionsNix.cmake: Removed.
1058 2014-01-18 Zan Dobersek <zdobersek@igalia.com>
1060 [GTK] Bump the minimum required Clang version to 3.3
1061 https://bugs.webkit.org/show_bug.cgi?id=127178
1063 Reviewed by Martin Robinson.
1065 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
1066 build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
1067 support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
1069 2014-01-14 Dan Bernstein <mitz@apple.com>
1071 Only use color in make output when it’s going to a terminal.
1073 Reviewed by Mark Rowe.
1077 2014-01-13 Martin Robinson <mrobinson@igalia.com>
1079 [CMake] Mark all dependency include paths and libraries as advanced variables
1080 https://bugs.webkit.org/show_bug.cgi?id=126504
1082 Reviewed by Daniel Bates.
1084 * Source/cmake/FindATK.cmake: Mark result variable as advanced.
1085 * Source/cmake/FindCairo.cmake: Ditto.
1086 * Source/cmake/FindEGL.cmake: Ditto.
1087 * Source/cmake/FindEnchant.cmake: Ditto.
1088 * Source/cmake/FindGLIB.cmake: Ditto.
1089 * Source/cmake/FindGStreamer.cmake: Ditto.
1090 * Source/cmake/FindHarfBuzz.cmake: Ditto.
1091 * Source/cmake/FindLibSoup.cmake: Ditto.
1093 2014-01-13 Martin Robinson <mrobinson@igalia.com>
1095 [GTK][CMake] Add a 'check' target
1096 https://bugs.webkit.org/show_bug.cgi?id=126770
1098 Reviewed by Daniel Bates.
1100 * Source/PlatformGTK.cmake: Add a 'check' target that calls run-gtk-tests.
1102 2014-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
1104 Unreviewed. Update NEWS and Versions.m4 for 2.3.4 release.
1106 * Source/autotools/Versions.m4: Bump version numbers.
1108 2014-01-12 Sergio Correia <sergio.correia@openbossa.org>
1110 [EFL][WK2] Make API tests work again
1111 https://bugs.webkit.org/show_bug.cgi?id=126769
1113 Reviewed by Gyuyoung Kim.
1115 The EFL and WK2 test binaries are currently being generated at *TestWebKitAPI/
1116 [E]WebKit2, respectively, and this causes problems because the logic to find
1117 where WebProcess is to look in the same directory of the running process and
1118 then proceed to use LIBEXECDIR (typically /usr/loca/bin).
1120 This patch introduces a WEBKIT_EXEC_PATH environment variable, inspired in the
1121 Gtk port, which allows us to look for WebProcess initially in this directory,
1124 * Source/cmake/OptionsEfl.cmake: Define WEBKIT_EXEC_PATH, to be used by
1127 2014-01-11 Dan Bernstein <mitz@apple.com>
1129 [Mac] xcodebuild color output is suppressed when using make
1130 https://bugs.webkit.org/show_bug.cgi?id=126815
1132 Reviewed by Anders Carlsson.
1134 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
1135 format its output with color and emphasis.
1137 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
1138 xcodebuild limitations, this restores some of the formatting, but not all of it.
1140 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
1142 Remove the BlackBerry port from trunk
1143 https://bugs.webkit.org/show_bug.cgi?id=126715
1145 Reviewed by Anders Carlsson.
1148 * Source/cmake/OptionsCommon.cmake:
1150 2014-01-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
1152 [EFL][JSC] Enable udis86 disassembler on efl.
1153 https://bugs.webkit.org/show_bug.cgi?id=125502
1155 Reviewed by Michael Saboff.
1157 Enable udis86 disassembler on efl and fix build warnings.
1159 * Source/cmake/OptionsEfl.cmake:
1160 Enable udis86 disassembler.
1162 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
1164 Remove the BlackBerry port from trunk
1165 https://bugs.webkit.org/show_bug.cgi?id=126715
1167 Reviewed by Anders Carlsson.
1171 2014-01-09 Benjamin Poulain <bpoulain@apple.com>
1173 Remove the BlackBerry files outside WebCore
1174 https://bugs.webkit.org/show_bug.cgi?id=126715
1176 Reviewed by Anders Carlsson.
1178 * ManualTests/blackberry: Removed.
1179 * Source/cmake/OptionsBlackBerry.cmake: Removed.
1181 2014-01-08 Martin Robinson <mrobinson@igalia.com>
1183 [GTK] [CMake] Specify the executable and library output locations in the build
1184 https://bugs.webkit.org/show_bug.cgi?id=126671
1186 Reviewed by Gustavo Noronha Silva.
1188 * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
1190 2014-01-08 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1192 [EFL] Make FTL buildable
1193 https://bugs.webkit.org/show_bug.cgi?id=125777
1195 Reviewed by Csaba Osztrogonác.
1197 * Source/cmake/OptionsEfl.cmake:
1198 * Source/cmakeconfig.h.cmake:
1200 2014-01-08 Alberto Garcia <berto@igalia.com>
1202 REGRESSION(r160304): [GTK] Disable libtool fast install
1203 https://bugs.webkit.org/show_bug.cgi?id=126381
1205 Reviewed by Gustavo Noronha Silva.
1207 Don't disable the libtool fast-install mode unconditionally by
1210 If the fast-install mode is disabled, binaries are generated ready
1211 to use the libraries directly from the build tree. If we use the
1212 GNU linker, those binaries are then relinked when they are
1215 However, libtool fails to do it properly when an installation
1216 prefix is set with DESTDIR, and ends up installing the libtool
1217 wrappers instead of the actual binaries.
1219 * Source/autotools/SetupLibtool.m4:
1221 2014-01-07 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
1223 Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
1224 in output and dependencies declarations, so docs are not built needlessly
1227 * Source/PlatformGTK.cmake:
1229 2014-01-04 Carlos Garcia Campos <cgarcia@igalia.com>
1231 [GTK] Move all GTK/GObject unit tests to Tools/TestWebKitAPI
1232 https://bugs.webkit.org/show_bug.cgi?id=126342
1234 Reviewed by Gustavo Noronha Silva.
1236 * GNUmakefile.am: Remove unused variable.
1237 * Source/PlatformGTK.cmake: No longer include the old unit tests directories.
1239 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
1241 [GTK] configure errors out when building with libc++
1242 https://bugs.webkit.org/show_bug.cgi?id=126431
1244 Reviewed by Martin Robinson.
1246 Ease up the Clang and libstdc++ combination test to only fail if libstdc++ < 4.8.1 is actually used.
1247 This allows for libc++ to be used as well. The test is moved into SetupCompilerFlags.m4 and is done
1248 after the CXXFLAGS variable is properly set up, that is when all the C++ compiler options are determined.
1250 * Source/autotools/CheckSystemAndBasicDependencies.m4:
1251 * Source/autotools/SetupCompilerFlags.m4:
1253 2014-01-06 Martin Robinson <mrobinson@igalia.com>
1255 [CMake] [GTK] Fix the build for the WebKitGTK+ developer configuration
1256 https://bugs.webkit.org/show_bug.cgi?id=126505
1258 Reviewed by Gustavo Noronha Silva.
1260 * Source/cmake/FindGLIB.cmake: Add support for finding the gio-unix include directory location.
1261 * Source/cmake/FindGUdev.cmake: Added.
1262 * Source/cmake/FindGeoClue.cmake: Added.
1263 * Source/cmake/OptionsGTK.cmake: When gamepad is enabled look for gio-unix and GUdev. When
1264 geolocation is enabled look for GeoClue.
1266 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
1268 [GTK] Use libc++ for C++11 on darwin
1269 https://bugs.webkit.org/show_bug.cgi?id=126325
1271 Reviewed by Martin Robinson.
1273 * Source/autotools/SetupCompilerFlags.m4: Don't default to libstdc++ when compiling with Clang.
1274 Instead, the compiler should determine itself what standard library to use, except on Darwin,
1275 where libc++ should be enforced. The standard library of user's choosing can still be enforced
1276 through the CXXFLAGS environment variable.
1278 2014-01-05 Martin Robinson <mrobinson@igalia.com>
1280 [GTK] [CMake] Ensure that the autotools build and the CMake install the same files
1281 https://bugs.webkit.org/show_bug.cgi?id=116379
1283 Reviewed by Gustavo Noronha Silva.
1285 * Source/PlatformGTK.cmake: Install the documentation.
1286 * Source/cmake/OptionsCommon.cmake: Add a LIBEXEC variable for WebKit2 executables, and
1287 don't use the default locations on GTK+. We will get them from the CMake-provided GNU installation
1289 * Source/cmake/OptionsGTK.cmake: Setup the installation variables using the ones provided
1290 by CMake's GNU installation directory support. Fix the definition of DATADIR. Always install
1293 2014-01-05 Carlos Garcia Campos <cgarcia@igalia.com>
1295 [GTK] Stop installing WebKit2 C API headers
1296 https://bugs.webkit.org/show_bug.cgi?id=126489
1298 Reviewed by Martin Robinson.
1302 2014-01-04 Martin Robinson <mrobinson@igalia.com>
1304 [GTK] [CMake] Improve the way we locate gobject-introspection
1305 https://bugs.webkit.org/show_bug.cgi?id=126452
1307 Reviewed by Philippe Normand.
1309 * Source/cmake/FindGObjectIntrospection.cmake: Added.
1310 * Source/cmake/OptionsGTK.cmake: Load the new FindGObjectIntrospection file.
1312 2014-01-04 Martin Robinson <mrobinson@igalia.com>
1314 [GTK] [CMake] Fix the video and audio build
1315 https://bugs.webkit.org/show_bug.cgi?id=126464
1317 Reviewed by Philippe Normand.
1319 * Source/cmake/OptionsGTK.cmake: GStreamer files look for USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER),
1320 so define those when appropriate. Web audio is one by default in autotools, so turn it on for cmake
1323 2014-01-03 Martin Robinson <mrobinson@igalia.com>
1325 [CMake] The forwarding headers generated by WebKitMacros.m4 are incompatible with the headers generated by generate-forwarding-headers.pl
1326 https://bugs.webkit.org/show_bug.cgi?id=126361
1328 Reviewed by Philippe Normand.
1330 Make the forwarding headers generated by WebKitMacros.m4 compatible with the headers
1331 generated by the WebKit2 forwarding headers generation script.
1333 * Source/cmake/WebKitMacros.cmake: Try to convert absolute paths in the forwarding headers
1334 to ones that are relative to the Source directory.
1336 2014-01-02 Carlos Garcia Campos <cgarcia@igalia.com>
1338 REGRESSION(r160304): [GTK] Disable libtool fast install
1339 https://bugs.webkit.org/show_bug.cgi?id=126381
1341 Reviewed by Martin Robinson.
1343 After r160304 we are building some of our binaries that are
1344 installed with the -no-fast-install ld flag. This makes that the
1345 binaries are installed with the source code path hardcoded in
1346 binary RPATH. Disabling fast install globally, the libtool script
1347 always relinks the binaries right before being installed.
1349 * Source/autotools/SetupLibtool.m4: Add AC_DISABLE_FAST_INSTALL.
1351 2014-01-02 Jaehun Lim <ljaehun.lim@samsung.com>
1353 [CMake][EFL] Fix some typos in OptionsEfl.cmake
1354 https://bugs.webkit.org/show_bug.cgi?id=126376
1356 Reviewed by Gyuyoung Kim.
1358 * Source/cmake/WebKitFeatures.cmake: Correct a wrong word and remove comma(,).
1360 2013-12-30 Martin Robinson <mrobinson@igalia.com>
1362 [CMake] [GTK] Add support for GObject introspection
1363 https://bugs.webkit.org/show_bug.cgi?id=126162
1365 Reviewed by Daniel Bates.
1367 * Source/PlatformGTK.cmake: Add a 'gir' target that builds all GIR files.
1368 * Source/cmake/OptionsGTK.cmake: Add a macro for propagating typelib
1369 targets to the Source level of the build.
1371 2013-12-29 Martin Robinson <mrobinson@igalia.com>
1373 [GTK][CMake] Translations must be built
1374 https://bugs.webkit.org/show_bug.cgi?id=125513
1376 Reviewed by Gustavo Noronha Silva.
1378 * Source/PlatformGTK.cmake: Add the po subdirectory.
1380 2013-12-28 Giovanni Campagna <gcampagna@src.gnome.org>
1382 [GTK] Fix release builds with NetworkProcess enabled
1383 https://bugs.webkit.org/show_bug.cgi?id=126247
1385 Reviewed by Carlos Garcia Campos.
1387 * Source/autotools/symbols.filter:
1389 2013-12-26 Martin Robinson <mrobinson@igalia.com>
1391 [GTK] [CMake] Add a production build type
1392 https://bugs.webkit.org/show_bug.cgi?id=126179
1394 Reviewed by Daniel Bates.
1396 * Source/PlatformGTK.cmake: When the API tests are enabled compile the WebKit GObject
1397 API unit tests. The inclusion of these build files was inadvertently removed in an earlier
1399 * Source/cmake/OptionsGTK.cmake: When in production mode turn off all tools and tests and
1400 use the autotools linker script.
1402 2013-12-25 Martin Robinson <mrobinson@igalia.com>
1404 [GTK] [CMake] Properly name the JavaScriptCore library
1405 https://bugs.webkit.org/show_bug.cgi?id=126220
1407 Reviewed by Gustavo Noronha Silva.
1409 * Source/cmake/OptionsGTK.cmake: Set the JSC library name properly.
1411 2013-12-25 Martin Robinson <mrobinson@igalia.com>
1413 [GTK] [CMake] Clean up generated sources directories
1414 https://bugs.webkit.org/show_bug.cgi?id=126216
1416 Reviewed by Gustavo Noronha Silva.
1418 * Source/cmake/OptionsGTK.cmake: Pre-define the main derived sources directories
1419 so that they definitions can be shared easily throughout the build system.
1421 2013-12-23 Jinwoo Song <jinwoo7.song@samsung.com>
1423 [EFL][CMAKE] Case insensitive string comparison of build type
1424 https://bugs.webkit.org/show_bug.cgi?id=126153
1426 Reviewed by Daniel Bates.
1428 Compare CMAKE_BUILD_TYPE with "debug" ignoring case.
1430 * Source/cmake/OptionsEfl.cmake:
1432 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
1434 [GTK] [CMake] Add support for generating gtkdoc
1435 https://bugs.webkit.org/show_bug.cgi?id=116376
1437 Reviewed by Martin Robinson.
1439 * Source/PlatformGTK.cmake: Added. New custom target that depends on a custom command
1440 which calls our generate-gtkdoc script. It uses a docs-build.stamp for simplicity,
1441 like the autotools build.
1443 2013-12-23 Martin Robinson <mrobinson@igalia.com>
1445 [GTK] [CMake] Build the WebKit2 GObject API tests
1446 https://bugs.webkit.org/show_bug.cgi?id=125683
1448 Reviewed by Daniel Bates.
1450 * Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
1451 * Source/cmake/FindATSPI.cmake: Added.
1452 * Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.
1454 2013-12-23 Martin Robinson <mrobinson@igalia.com>
1456 [GTK] [CMake] Build the WebKit1 GObject API tests
1457 https://bugs.webkit.org/show_bug.cgi?id=125684
1459 Reviewed by Daniel Bates.
1461 * Source/PlatformGTK.cmake: Added.
1463 2013-12-22 Martin Robinson <mrobinson@igalia.com>
1465 https://bugs.webkit.org/show_bug.cgi?id=125511
1467 [GTK][CMake] libtool-compatible soversion calculation
1468 Reviewed by Gustavo Noronha Silva.
1470 * Source/cmake/OptionsGTK.cmake: Specify the appropriate libtool triples and use
1471 the CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE macro to specify the library-specific
1472 version information.
1473 * Source/cmake/WebKitHelpers.cmake: Add some helpful macros.
1475 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
1477 [GTK] [CMake] Generate pkg-config files
1478 https://bugs.webkit.org/show_bug.cgi?id=125685
1480 Reviewed by Martin Robinson.
1482 * Source/cmake/OptionsGTK.cmake: set variables used for filling in the values in the
1485 2013-12-23 Carlos Garcia Campos <cgarcia@igalia.com>
1487 [GTK] Build with network process unconditionally
1488 https://bugs.webkit.org/show_bug.cgi?id=126128
1490 Reviewed by Martin Robinson.
1492 * Source/autotools/SetupAutomake.m4: Remove network process
1493 conditional for Makefiles.
1494 * Source/autotools/SetupWebKitFeatures.m4: Remove network process
1497 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
1499 [GTK][CMake] make libjavascriptcoregtk a public shared library again
1500 https://bugs.webkit.org/show_bug.cgi?id=125512
1502 Reviewed by Martin Robinson.
1504 * CMakeLists.txt: make JavaScriptCore always be a shared library for the GTK+ port.
1505 * Source/cmake/WebKitHelpers.cmake: make -fvisibility=hidden not be applied for GTK+,
1506 visibility of some symbols is required for threading to be initialized properly by
1507 WebKit2 processes, and we will rely on a linker script that will be added later on,
1508 for production builds.
1510 2013-12-16 Martin Robinson <mrobinson@igalia.com>
1512 [GTK] [CMake] Add support for building WebKit1
1513 https://bugs.webkit.org/show_bug.cgi?id=116377
1515 Reviewed by Gustavo Noronha Silva.
1517 * Source/cmake/OptionsGTK.cmake: Turn off some features that do not build properly
1518 for WebKit1 and stop using the version script which we haven't implemented yet. Turn
1521 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
1523 [GTK][CMake] Use thin archives if building on Linux, only way to get non-shared-core debug builds
1524 https://bugs.webkit.org/show_bug.cgi?id=125951
1526 Reviewed by Martin Robinson.
1528 * Source/cmake/OptionsGTK.cmake: append T for thin archives to the flags passed to ar,
1529 also use u, which is used in the autotools build (it avoids adding a file twice).
1531 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
1533 [GTK][CMake] Remove binary size optimizations we do not use in the autotools build
1534 https://bugs.webkit.org/show_bug.cgi?id=125947
1536 Reviewed by Martin Robinson.
1538 * Source/cmake/OptionsGTK.cmake: remove the relevant flags.
1540 2013-12-18 Carlos Garcia Campos <cgarcia@igalia.com>
1542 Unreviewed. Update NEWS and Versions.m4 for 2.3.3 release.
1544 * Source/autotools/Versions.m4: Bump version numbers.
1546 2013-12-12 Martin Robinson <mrobinson@igalia.com>
1548 [GTK] [CMake] Build the plugin process against GTK+ 2
1549 https://bugs.webkit.org/show_bug.cgi?id=116374
1551 Reviewed by Gustavo Noronha Silva.
1553 * Source/cmake/FindGDK2.cmake: Added.
1554 * Source/cmake/FindGTK2.cmake: Added.
1555 * Source/cmake/OptionsGTK.cmake: Look for GTK2 and GDK2.
1556 * Source/cmake/WebKitMacros.cmake: Abstract WebKit2 IPC generation here so it
1557 can be shared between the WebKit2 library and the plugin process.
1559 2013-12-17 Simon Pena <simon.pena@samsung.com>
1561 [NIX] Enable full debug builds by having ar creating thin archives
1562 https://bugs.webkit.org/show_bug.cgi?id=125850
1564 Reviewed by Csaba Osztrogonác.
1566 By default, CMake uses ar to generate libWebCore.a with cr parameters
1567 (do not warn if the library has to be created, and replace existing
1568 files in the archive). That results in a very large file, and ar fails
1569 with sizes over 4GB.
1571 Previously, debug builds on NIX were overriding CFLAGS in order to reduce
1572 the size of the WebCore library. Once that ar creates thin archives, overriding
1573 CFLAGS is no longer needed.
1575 * Source/cmake/OptionsNix.cmake: Remove CFLAGS override for debug builds.
1577 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
1579 [GTK] Remove Warnings in building about duplicate INSPECTOR variables
1580 https://bugs.webkit.org/show_bug.cgi?id=125710
1582 Reviewed by Tim Horton.
1586 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
1588 Web Inspector: Add Inspector Code Generation to JavaScriptCore for Runtime Domain
1589 https://bugs.webkit.org/show_bug.cgi?id=125595
1591 Reviewed by Timothy Hatcher.
1595 2013-12-13 Zan Dobersek <zdobersek@igalia.com>
1597 [GTK] Remove the -Wno-c++11-extensions compiler option for Clang builds
1598 https://bugs.webkit.org/show_bug.cgi?id=125639
1600 Reviewed by Anders Carlsson.
1602 * Source/autotools/SetupCompilerFlags.m4: The -Wno-c++11-extensions compiler option was in use
1603 when building with Clang. It is now removed as the C++11 standard is enabled throughout the project.
1605 2013-12-11 Martin Robinson <mrobinson@igalia.com> and Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
1607 Adding a .ycm_extra_conf file for webkitGtk
1608 https://bugs.webkit.org/show_bug.cgi?id=119618
1610 Reviewed by Gustavo Noronha Silva.
1612 Added a YouCompleteMe flag discovery script for Vim and the GTK+ port. The script
1613 read the GTK+ build files to determine dynamically what flags to compile a source
1614 file with. This allows Vim to provide auto-complete for C++/C language. See
1615 https://github.com/Valloric/YouCompleteMe for how to use this file.
1617 * .gitignore: Ignore the YCM symlinks in the tree.
1619 2013-12-12 Zan Dobersek <zdobersek@igalia.com>
1621 Use of ar T option not supported by older binutils
1622 https://bugs.webkit.org/show_bug.cgi?id=118732
1624 Reviewed by Gustavo Noronha Silva.
1626 * Source/autotools/SetupLibtool.m4: Make the AR_FLAGS value usable inside makefiles as an Automake variable.
1628 2013-12-11 Javier Fernandez <jfernandez@igalia.com>
1630 Arithmetic overflow when computing max-height CSS property with subpixel layout
1631 https://bugs.webkit.org/show_bug.cgi?id=119273
1633 Reviewed by Martin Robinson.
1635 Enabled SATURATED_LAYOUT_ARITHMETIC for the gtk+ port.
1637 * Source/autotools/SetupWebKitFeatures.m4:
1639 2013-12-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
1641 [CMAKE] Remove code that disables C++0x compat warnings for gcc-4.6 and above.
1642 https://bugs.webkit.org/show_bug.cgi?id=125492
1644 Reviewed by Zoltan Herczeg.
1646 Remove the code that disables these warnings for GCC >= 4.6.0
1648 * Source/cmake/WebKitHelpers.cmake:
1650 2013-12-10 Martin Robinson <mrobinson@igalia.com>
1652 Various fixes for the CMake GTK+ build
1654 Reviewed by Gustavo Noronha.
1656 * Source/cmake/OptionsGTK.cmake: Disable Quota support to maintain consistency with
1659 2013-12-09 Brian Holt <brian.holt@samsung.com>
1661 [WK2][Gtk] Add support for ENABLE_NETWORK_PROCESS to the build system
1662 https://bugs.webkit.org/show_bug.cgi?id=118231
1664 Reviewed by Martin Robinson.
1666 Original patch by Kwang Yul Seo <skyul@company100.net>.
1668 Disabled ENABLE_NETWORK_PROCESS by default.
1670 * Source/autotools/SetupAutomake.m4:
1671 * Source/autotools/SetupWebKitFeatures.m4:
1673 2013-12-06 Alberto Garcia <berto@igalia.com>
1675 [GTK] Enable web audio by default
1676 https://bugs.webkit.org/show_bug.cgi?id=124888
1678 Reviewed by Martin Robinson.
1680 When building with ./configure, enable_web_audio defaults to
1681 "no". However the basic functionality has been working for months
1682 so it's safe to enable it now.
1684 * Source/autotools/ReadCommandLineArguments.m4:
1686 2013-12-04 Ryosuke Niwa <rniwa@webkit.org>
1688 Enable HTMLTemplateElement by default
1689 https://bugs.webkit.org/show_bug.cgi?id=123851
1691 Reviewed by Antti Koivisto.
1693 * Source/autotools/SetupWebKitFeatures.m4:
1694 * Source/cmake/WebKitFeatures.cmake:
1696 2013-12-04 László Langó <lango@inf.u-szeged.hu>
1698 Allow --cloop option to work correctly in case of EFL.
1699 https://bugs.webkit.org/show_bug.cgi?id=125217
1701 Reviewed by Zoltan Herczeg.
1703 * Source/cmake/OptionsEfl.cmake:
1704 * Source/cmake/WebKitFeatures.cmake:
1705 * Source/cmakeconfig.h.cmake:
1707 2013-12-03 Ryuan Choi <ryuan.choi@samsung.com>
1709 [EFL] Disable RTTI for release build
1710 https://bugs.webkit.org/show_bug.cgi?id=125138
1712 Reviewed by Gyuyoung Kim.
1714 Binary size will be reduced about 1M bytes without RTTI.
1715 ewebkit.so : 43,449,275 -> 42,510,224
1716 ewebkit2.so: 46,715,870 -> 45,653,989
1718 * Source/cmake/OptionsEfl.cmake: Added -fno-rtti option to CMAKE_CXX_FLAGS_RELEASE.
1720 2013-12-02 Adrian Bunk <bunk@stusta.de>
1722 [GTK] Remove unneeded autoconf macros
1723 https://bugs.webkit.org/show_bug.cgi?id=125044
1725 Compilers that do not support const/inline/volatile and
1726 systems with pre-C89-headers are anyway not supported.
1728 Reviewed by Gustavo Noronha Silva.
1730 * Source/autotools/CheckSystemAndBasicDependencies.m4:
1732 2013-11-29 Laszlo Vidacs <lac@inf.u-szeged.hu>
1734 [cmake] Fix cmake warning: Argument not separated from preceding token by whitespace
1735 https://bugs.webkit.org/show_bug.cgi?id=124899
1737 Reviewed by Gyuyoung Kim.
1739 * Source/cmake/FindCairo.cmake:
1740 * Source/cmake/FindGStreamer.cmake:
1742 2013-11-28 Antti Koivisto <antti@apple.com>
1744 Remove feature: CSS variables
1745 https://bugs.webkit.org/show_bug.cgi?id=114119
1747 Reviewed by Andreas Kling.
1749 * Source/cmakeconfig.h.cmake:
1751 2013-11-27 László Langó <lango@inf.u-szeged.hu>
1753 [EFL] The remote inspector does not show the base page.
1754 https://bugs.webkit.org/show_bug.cgi?id=124942
1756 Reviewed by Gyuyoung Kim.
1758 On EFL the remote inspector does not show the base page about
1759 which pages are available for debug. This should be fixed for
1760 further inspector development.
1762 * Source/PlatformEfl.cmake:
1764 2013-11-26 Marcelo Lira <marcelo.lira@openbossa.org>
1766 Nix upstreaming - Adding build files and supporting scripts
1767 https://bugs.webkit.org/show_bug.cgi?id=118367
1769 Reviewed by Ryosuke Niwa.
1772 * Source/CMakeLists.txt:
1773 * Source/cmake/FindEGL.cmake:
1774 * Source/cmake/FindOpenGLES2.cmake: Added.
1775 * Source/cmake/OptionsCommon.cmake:
1776 * Source/cmake/OptionsNix.cmake: Added.
1778 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
1780 [EFL] E_DBus should be an optional
1781 https://bugs.webkit.org/show_bug.cgi?id=124881
1783 Reviewed by Gyuyoung Kim.
1785 * Source/cmake/OptionsEfl.cmake:
1786 Checked E_DBus when only ENABLE_BATTERY_STATUS is on.
1788 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
1790 [EFL] Use Config mode of find_package for EFL 1.8
1791 https://bugs.webkit.org/show_bug.cgi?id=124555
1793 Reviewed by Gyuyoung Kim.
1795 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
1796 which parses header files to know the version. Instead, EFL 1.8 supports
1797 FooConfig.cmake such as EinaConfig.cmake.
1799 This patch tries to use a config mode if it is available.
1800 If config mode is not available with Eo, FindFoo.cmake will be used without
1801 version requirement.
1803 * Source/cmake/FindEo.cmake: Removed.
1804 EoConfig.cmake is only preffered for EFL 1.8.
1805 * Source/cmake/OptionsEfl.cmake:
1807 2013-11-23 Xabier Rodriguez Calvar <calvaris@igalia.com>
1809 [GStreamer] Remove 0.10 codepath
1810 https://bugs.webkit.org/show_bug.cgi?id=124534
1812 Reviewed by Philippe Normand.
1814 * Source/cmake/OptionsEfl.cmake: Removed GST_API_VERSION_1
1817 2013-11-22 Manuel Rego Casasnovas <rego@igalia.com>
1819 [GTK] Review enabled/disabled CSS features for release builds
1820 https://bugs.webkit.org/show_bug.cgi?id=124791
1822 Reviewed by Martin Robinson.
1824 Enable and disable some CSS features according to what last versions of
1827 * Source/autotools/SetupWebKitFeatures.m4: Enable ENABLE_CSS_REGIONS and
1828 ENABLE_CSS_STICKY_POSITION. Disable ENABLE_CSS_EXCLUSIONS and
1831 2013-11-21 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
1833 Remove ENABLE_WORKERS
1834 https://bugs.webkit.org/show_bug.cgi?id=105784
1836 Reviewed by Darin Adler.
1838 * Source/autotools/SetupWebKitFeatures.m4:
1839 * Source/cmake/WebKitFeatures.cmake:
1840 * Source/cmakeconfig.h.cmake:
1842 2013-11-20 Commit Queue <commit-queue@webkit.org>
1844 Unreviewed, rolling out r159496.
1845 http://trac.webkit.org/changeset/159496
1846 https://bugs.webkit.org/show_bug.cgi?id=124641
1848 It caused warning and build break with cmake lower than 2.8.8
1849 (Requested by ryuan on #webkit).
1851 * Source/cmake/OptionsEfl.cmake:
1853 2013-11-19 Ryuan Choi <ryuan.choi@samsung.com>
1855 [EFL] Use Config mode of find_package for EFL 1.8
1856 https://bugs.webkit.org/show_bug.cgi?id=124555
1858 Reviewed by Gyuyoung Kim.
1860 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
1861 which parses header file to know the version. Instead, EFL 1.8 supports
1862 Config mode of find_package using XXXConfig.cmake such as EinaConfig.cmake.
1864 This patch tries to use Config mode if it is available after checking Eo.
1866 * Source/cmake/OptionsEfl.cmake:
1868 2013-11-18 Carlos Garcia Campos <cgarcia@igalia.com>
1870 Unreviewed. Update NEWS and Versions.m4 for 2.3.2 release.
1872 * Source/autotools/Versions.m4: Bump version numbers.
1874 2013-11-06 Krzysztof Czech <k.czech@samsung.com>
1876 [EFL] Change required version of ATK to 2.10.0
1877 https://bugs.webkit.org/show_bug.cgi?id=123883
1879 Reviewed by Mario Sanchez Prada.
1881 Changing a required version of ATK to 2.10.0
1883 * Source/cmake/OptionsEfl.cmake:
1885 2013-11-05 Zalan Bujtas <zalan@apple.com>
1887 Widget's position change should not initiate layout, only when its size changes.
1888 https://bugs.webkit.org/show_bug.cgi?id=123860
1890 Reviewed by Andreas Kling.
1892 RenderWidgets initiate unnecessary layouts while scrolling when they are embedded to
1893 overflow:scroll containers. Scroll position change doesn't dirty the render tree
1894 so it should not trigger layout either.
1896 * ManualTests/layouts-on-renderwidgets-while-scrolling.html: Added.
1898 2013-11-05 Éva Balázsfalvi <balazsfalvi.eva@stud.u-szeged.hu>
1900 Remove leftover Qt related things from WebKitMacros.cmake
1901 https://bugs.webkit.org/show_bug.cgi?id=123798
1903 Reviewed by Anders Carlsson.
1905 * Source/cmake/WebKitMacros.cmake:
1907 2013-11-02 Patrick Gansterer <paroga@webkit.org>
1909 [WINCE] Disable export macros
1910 https://bugs.webkit.org/show_bug.cgi?id=123679
1912 Reviewed by Darin Adler.
1914 Avoid useless exports by turning of the export macros
1915 since the WinCE port works as a static library only.
1917 * Source/cmake/OptionsWinCE.cmake:
1919 2013-10-31 Ryuan Choi <ryuan.choi@samsung.com>
1921 [EFL][GLES] OpenGL should be an optional
1922 https://bugs.webkit.org/show_bug.cgi?id=123399
1924 Reviewed by Noam Rosenthal.
1926 * Source/cmake/OptionsEfl.cmake:
1927 Refactor the check routine of GL dependencies to use OpenGL as optional.
1929 2013-10-29 Carlos Garcia Campos <cgarcia@igalia.com>
1931 Unreviewed. Update NEWS and Versions.m4 for 2.3.1 release.
1933 * Source/autotools/Versions.m4: Bump version numbers.
1935 2013-10-24 Ryuan Choi <ryuan.choi@samsung.com>
1937 [EFL] Build break with latest EFL 1.8 libraries.
1938 https://bugs.webkit.org/show_bug.cgi?id=123245
1940 Reviewed by Gyuyoung Kim.
1942 After fixed build break on EFL 1.8 at r138326, EFL libraries are changed
1943 Eo typedef and splitted header files which contain version macro.
1945 * Source/cmake/EFLHelpers.cmake: Checked whether include path exist.
1946 * Source/cmake/FindEcore.cmake: Added 1.8 Header which have version macro.
1947 * Source/cmake/FindEdje.cmake: Ditto.
1948 * Source/cmake/FindEina.cmake: Ditto.
1949 * Source/cmake/FindEo.cmake: Ditto.
1950 * Source/cmake/FindEvas.cmake: Ditto.
1952 2013-10-22 Ryuan Choi <ryuan.choi@samsung.com>
1954 [EFL] Remove HAVE_GLX macro
1955 https://bugs.webkit.org/show_bug.cgi?id=123191
1957 Reviewed by Gyuyoung Kim.
1959 * Source/cmake/OptionsEfl.cmake: Removed unnecessary HAVE_GLX macro
1961 2013-10-21 Gergo Balogh <geryxyz@inf.u-szeged.hu>
1963 Remove .qmake.conf files
1964 https://bugs.webkit.org/show_bug.cgi?id=123091
1966 Reviewed by Csaba Osztrogonác.
1968 * .qmake.conf: Removed.
1970 2013-10-18 Carlos Garcia Campos <cgarcia@igalia.com>
1972 [GTK] Generate API documentation for GObject DOM bindings
1973 https://bugs.webkit.org/show_bug.cgi?id=121538
1975 Reviewed by Gustavo Noronha Silva.
1977 * GNUmakefile.am: Initialize gdom_symbol_files variable.
1979 2013-10-17 Afonso R. Costa Jr. <afonso.costa@samsung.com>
1981 [CMAKE] Update code to take advantage of CMake version 2.8.3+.
1982 https://bugs.webkit.org/show_bug.cgi?id=97516
1984 Reviewed by Gyuyoung Kim.
1986 CMake's version was changed to 2.8.3. So, these files below
1987 can be simplified to take advantage of CMake's new version.
1989 * Source/cmake/FindCairo.cmake: Simplified according to CMake 2.8.3+.
1990 * Source/cmake/FindGStreamer.cmake: Ditto.
1992 2013-10-16 Ryosuke Niwa <rniwa@webkit.org>
1994 Add a new flakiness dashboard clone
1995 https://bugs.webkit.org/show_bug.cgi?id=122936
1997 Reviewed by Anders Carlsson.
1999 Added the initial prototype.
2001 * Websites/test-results: Added.
2002 * Websites/test-results/.htaccess: Added.
2003 * Websites/test-results/admin: Added.
2004 * Websites/test-results/admin/index.php: Added.
2005 * Websites/test-results/api: Added.
2006 * Websites/test-results/api/manifest.php: Added.
2007 * Websites/test-results/api/report.php: Added.
2008 * Websites/test-results/api/results.php: Added.
2009 * Websites/test-results/include: Added.
2010 * Websites/test-results/include/config.json: Added.
2011 * Websites/test-results/include/db.php: Added.
2012 * Websites/test-results/include/init-database.sql: Added.
2013 * Websites/test-results/include/json-shared.php: Added.
2014 * Websites/test-results/include/test-results.php: Added.
2015 * Websites/test-results/index.html: Added.
2016 * Websites/test-results/js: Added.
2017 * Websites/test-results/js/autocompleter.js: Added.
2018 * Websites/test-results/js/build.js: Added.
2019 * Websites/test-results/js/dom.js: Added.
2021 2013-10-16 Csaba Osztrogonác <ossy@webkit.org>
2023 [WK2][Efl][CMake] Add support for ENABLE_NETWORK_PROCESS to the build system
2024 https://bugs.webkit.org/show_bug.cgi?id=110139
2026 Reviewed by Laszlo Gombos.
2028 Original patch by Balazs Kelemen <kbalazs@webkit.org>
2030 * Source/cmake/WebKitFeatures.cmake:
2031 * Source/cmakeconfig.h.cmake:
2033 2013-10-10 Marcelo Morais <m.morais@samsung.com>
2035 Web Inspector: Remove the old front-end from WebKit
2036 https://bugs.webkit.org/show_bug.cgi?id=122295
2038 Reviewed by Timothy Hatcher.
2040 * Source/PlatformGTK.cmake: Removed. This file was using files from the
2041 old inspector, not needed anymore.
2043 2013-10-09 Julien Brianceau <jbriance@cisco.com>
2045 [sh4] Add sh4 support when building with CMake.
2046 https://bugs.webkit.org/show_bug.cgi?id=122542
2048 Reviewed by Csaba Osztrogonác.
2052 2013-10-08 Martin Robinson <mrobinson@igalia.com>
2054 [GTK] Re-enable MathML for release builds
2055 https://bugs.webkit.org/show_bug.cgi?id=122361
2057 Reviewed by Darin Adler.
2059 * Source/autotools/SetupWebKitFeatures.m4: Enable MathML for release builds.
2061 2013-10-02 Anders Carlsson <andersca@apple.com>
2063 Remove Qt related files from the root directories
2064 https://bugs.webkit.org/show_bug.cgi?id=122249
2066 Reviewed by Andreas Kling.
2068 * Source/QtWebKit.pro: Removed.
2069 * Source/api.pri: Removed.
2070 * Source/qtwebkit.qdocconf: Removed.
2071 * Source/sync.profile: Removed.
2072 * Source/tests.pri: Removed.
2073 * Source/widgetsapi.pri: Removed.
2074 * WebKit.pro: Removed.
2076 2013-09-30 Sam Weinig <sam@webkit.org>
2078 Remove support for DOMFileSystem
2079 https://bugs.webkit.org/show_bug.cgi?id=122137
2081 Reviewed by Anders Carlsson.
2083 * Source/autotools/SetupWebKitFeatures.m4:
2084 * Source/cmake/OptionsBlackBerry.cmake:
2085 * Source/cmake/WebKitFeatures.cmake:
2086 * Source/cmakeconfig.h.cmake:
2088 2013-09-30 Benjamin Poulain <benjamin@webkit.org>
2090 Remove the code guarded by STYLE_SCOPED
2091 https://bugs.webkit.org/show_bug.cgi?id=122123
2093 Reviewed by Anders Carlsson.
2095 * Source/autotools/SetupWebKitFeatures.m4:
2096 * Source/cmake/OptionsBlackBerry.cmake:
2097 * Source/cmake/WebKitFeatures.cmake:
2098 * Source/cmakeconfig.h.cmake:
2100 2013-09-30 Allan Sandfeld Jensen <allan.jensen@digia.com>
2102 [Qt] Fix force_static_libs_as_shared in WebKit2
2103 https://bugs.webkit.org/show_bug.cgi?id=121961
2105 Reviewed by Csaba Osztrogonác.
2107 Get rid of the unused WebKit2QML library
2111 2013-09-26 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2113 [GTK] Tons of warnings caused by using FORTIFY_SOURCE in an unoptimized build
2114 https://bugs.webkit.org/show_bug.cgi?id=121836
2116 Reviewed by Martin Robinson.
2118 * Source/autotools/SetupCompilerFlags.m4: only consider enabling FORTIFY_SOURCE if optimizations have
2119 been enabled, since they are required for FORTIFY_SOURCE to work, and enabling FORTIFY_SOURCE unconditionally
2120 generates warnings in newer glibc.
2122 2013-09-25 Allan Sandfeld Jensen <allan.jensen@digia.com>
2124 [Qt] Fix build with Qt 5.2 QtPosition module
2125 https://bugs.webkit.org/show_bug.cgi?id=121089
2127 Reviewed by Simon Hausmann.
2129 QtLocation -> QtPositioning
2131 * Source/sync.profile:
2133 2013-09-24 Zan Dobersek <zdobersek@igalia.com>
2135 [GTK] Enable the Wayland target if GTK+ dependency is found
2136 https://bugs.webkit.org/show_bug.cgi?id=121704
2138 Reviewed by Gustavo Noronha Silva.
2140 The Wayland target should be enabled by default if the GTK+ dependency is of version 3.9.14 or later.
2142 * Source/autotools/FindDependencies.m4: If the Wayland target was not strictly disabled, the GTK+ dependency
2143 is tested if it can provide the Wayland GDK backend, and that the version of that backend matches the version
2144 of the master GTK+ dependency for which we already tested. If found, the target is enabled, otherwise we either
2145 warn or error out, depending on whether the build target was set to auto or completely disabled through configuration.
2146 * Source/autotools/ReadCommandLineArguments.m4: Switch the default Wayland target status to 'auto', meaning
2147 it will be disabled if the GTK+ dependency is not found.
2148 * Source/autotools/Versions.m4: Require GTK+ 3.9.14 for the Wayland target only.
2150 2013-09-23 Zan Dobersek <zdobersek@igalia.com>
2152 [Autotools] Rework the build target selection
2153 https://bugs.webkit.org/show_bug.cgi?id=121703
2155 Reviewed by Gustavo Noronha Silva.
2157 Replace the --with-target configuration flag with target-specific --enable-*-target flags:
2158 - --enable-x11-target
2159 - --enable-wayland-target
2160 - --enable-win32-target
2161 - --enable-quartz-target
2162 - --enable-directfb-target
2164 By default, the X11 target is enabled. This default is preserved only if no --enable-*-target flag
2165 is passed on the command line. When that occurs, the newly-constructed list of build targets is
2166 used to determine what build targets should actually be built. So for instance, executing just
2167 `./configure` would only enable the X11 target as that's the default, and executing
2168 `./configure --enable-wayland-target` would only enable the Wayland target, as the defaults are
2171 * Source/autotools/CheckSystemAndBasicDependencies.m4: Abort if grep was not found, just in case.
2172 * Source/autotools/CustomMacros.m4: The new file that contains helpful custom macros.
2173 * Source/autotools/FindDependencies.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
2174 * Source/autotools/PrintBuildConfiguration.m4: Use the new AM_APPEND_TO_DESCRIPTION macro to construct a pretty-looking
2175 description string of what targets will be built.
2176 * Source/autotools/ReadCommandLineArguments.m4: Replace the --with-target configuration flag and the related
2177 hacks with the set of --enable-*-target flags. The new AM_DETERMINE_BUILD_TARGET_STATUS macro is used to determine
2178 whether to enable specific build targets, based indirectly on the passed-in --enable-*-target flags.
2179 * Source/autotools/SetupAutoconfHeader.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
2180 * Source/autotools/SetupAutomake.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
2181 * configure.ac: Include the new CustomMacros.m4 file.
2183 2013-09-23 Claudio Saavedra <csaavedra@igalia.com>
2187 Reviewed by Carlos Garcia Campos.
2189 * Source/autotools/Versions.m4: Bump to 2.3.0
2191 2013-09-20 Sergio Correia <sergio.correia@openbossa.org>
2193 [CMAKE] FindHarfBuzz: Handle harfbuzz / harfbuzz-icu split
2194 https://bugs.webkit.org/show_bug.cgi?id=121688
2196 Reviewed by Martin Robinson.
2198 HarfBuzz 0.9.18 split ICU support into a separate harfbuzz-icu library.
2199 To be able to build with earlier and newer versions of HarfBuzz, we should
2200 check for harfbuzz-icu as well, if version >= 0.9.18.
2202 * Source/cmake/FindHarfBuzz.cmake: Check for harfbuzz-icu, if version
2205 2013-09-16 Gustavo Noronha Silva <gns@gnome.org>
2207 [GTK] Make symbol export filter more strict, and disable for dev/test builds
2208 https://bugs.webkit.org/show_bug.cgi?id=120586
2210 Reviewed by Martin Robinson.
2212 * GNUmakefile.am: only include test-related automake files when developer
2214 * Source/autotools/ReadCommandLineArguments.m4: add --enable-developer-mode,
2215 defaults to no, and to yes for debug builds.
2216 * Source/autotools/SetupAutomake.m4: add ENABLE_DEVELOPER_MODE conditional.
2217 * Source/autotools/symbols.filter: make the exported symbols list much shorter,
2218 covering only the public ABI and a few symbols required by WebKit2 processes.
2220 2013-09-13 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2222 [GTK] Move to the new web inspector
2223 https://bugs.webkit.org/show_bug.cgi?id=120647
2225 Reviewed by Carlos Garcia Campos.
2227 * GNUmakefile.am: include the new WebInspectorUI GNUmakefile.am.
2229 2013-09-13 Allan Sandfeld Jensen <allan.jensen@digia.com>
2231 [Qt] Update sync.profile
2232 https://bugs.webkit.org/show_bug.cgi?id=121295
2234 Reviewed by Simon Hausmann.
2236 Ensure we let the dependencies pick the right branch instead of always master
2237 and list all the dependencies we need on all platforms.
2239 * Source/sync.profile:
2241 2013-09-11 Mario Sanchez Prada <mario.prada@samsung.com>
2243 [GTK] Remove Gail dependency from build system for GTK3
2244 https://bugs.webkit.org/show_bug.cgi?id=119673
2246 Reviewed by Gustavo Noronha Silva.
2248 * Source/autotools/FindDependencies.m4: Don't look for GAIL at all.
2249 * Source/autotools/Versions.m4: Removed any reference to GAIL.
2250 * Source/cmake/FindGAIL3.cmake: Removed.
2251 * Source/cmake/OptionsGTK.cmake: Don't look for the GAIL package.
2253 2013-09-11 Patrick Gansterer <paroga@webkit.org>
2255 [CMake] Split out generic Windows files into its own file
2256 https://bugs.webkit.org/show_bug.cgi?id=119514
2258 Reviewed by Gyuyoung Kim.
2260 This allows us to add smaller CMakeLists.txt files when
2261 adding additional Windows ports.
2263 * Source/cmake/OptionsWinCE.cmake:
2264 * Source/cmake/WebKitMacros.cmake:
2266 2013-09-11 Alberto Garcia <berto@igalia.com>
2268 autogen.sh: fix removal of autom4te.cache
2269 https://bugs.webkit.org/show_bug.cgi?id=121150
2271 Reviewed by Carlos Garcia Campos.
2273 The removal of autom4te.cache is wrong, it uses 'rm -f' instead of
2274 'rm -rf' and it relies on an undefined variable.
2276 In addition to that, it should be done after running autoreconf,
2277 which is when it's no longer needed.
2281 2013-09-11 Alberto Garcia <berto@igalia.com>
2283 Unquoted $ORIGDIR in autogen.sh
2284 https://bugs.webkit.org/show_bug.cgi?id=19512
2286 Reviewed by Carlos Garcia Campos.
2288 Quote all directory names. This doesn't mean that all possible
2289 directory names are safe for building webkit, but the configure
2290 script already runs a sanity check.
2294 2013-09-11 Zan Dobersek <zdobersek@igalia.com>
2296 [GTK] Stop disabling deprecated symbols in debug builds
2297 https://bugs.webkit.org/show_bug.cgi?id=121145
2299 Reviewed by Carlos Garcia Campos.
2301 Disabling the dependencies' deprecated symbols in debug builds is only causing unnecessary
2302 build failures. Compiler warnings are being thrown whenever a deprecated symbol is being
2303 used, so a build failure is an overreach in this case.
2305 * Source/autotools/SetupAutoconfHeader.m4:
2307 2013-09-10 Marcelo Morais <m.morais@samsung.com>
2309 [EFL] WebInspector: Move to new webinspector
2310 https://bugs.webkit.org/show_bug.cgi?id=119559
2312 Reviewed by Gyuyoung Kim.
2314 Enabling the new Web Inspector on EFL port.
2315 Co-author: Andre Loureiro <andre.vl@samsung.com>
2317 * Source/PlatformEfl.cmake:
2318 * Source/cmake/OptionsEfl.cmake:
2320 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
2322 REGRESSION(r155143): Build failures on GTK port with Clang and libstdc++ < 4.8.1
2323 https://bugs.webkit.org/show_bug.cgi?id=120896
2325 Reviewed by Anders Carlsson.
2327 The GTK port currently only permits using the libstdc++ standard library when compiling with
2328 Clang. After r155143, build failures are occurring when using Clang and libstdc++ that predates
2329 the 4.8.0 release due to the use of std::is_trivially_destructible that isn't available in
2332 To not add additional special casing, the GTK port should move onto requiring libstdc++ >= 4.8.1
2333 when compiling with the Clang compiler. Version 4.8.1 was chosen since it's C++11 feature-complete.
2334 This strict requirement is possible as compiling the GTK port with the Clang compiler is not really
2335 widespread, so we can afford to adjust the required dependencies to match other ports' progression
2336 instead of modifying the code.
2338 * Source/autotools/CheckSystemAndBasicDependencies.m4: If the detected compiler is Clang, also check
2339 that the libstdc++ standard library is used by testing for the __GLIBCXX__ macro that should be defined
2340 to the value lesser than the '20130531', the date stamp used by the 4.8.1 release of libstdc++. Since
2341 possible future releases of the 4.6 or 4.7 series of libstdc++ will also match this check due to a newer
2342 date stamp contained in __GLIBCXX__, the std::is_trivially_destructible struct is also used so the
2343 compilation will fail if the libstdc++ that's used is older than allowed (and therefor does not support
2344 the feature). If the check fails, a fatal error is thrown, describing the requirement. Everything carries
2345 on as normal otherwise.
2347 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
2349 [GTK] Bump the required Clang version to 3.2
2350 https://bugs.webkit.org/show_bug.cgi?id=112537
2352 Reviewed by Gustavo Noronha Silva.
2354 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
2355 when the Clang compiler is specified.
2357 2013-09-05 Brendan Long <b.long@cablelabs.com>
2359 [Qt] DefaultFullScreenVideoHandler and PlatformVideoWindow are included in the build when they are disabled
2360 https://bugs.webkit.org/show_bug.cgi?id=117206
2362 Reviewed by Philippe Normand.
2364 * Source/widgetsapi.pri: Don't include DefaultFullScreenVideoHandler when it's disabled.
2366 2013-09-05 Ryuan Choi <ryuan.choi@samsung.com>
2368 [CMAKE] Add c++0x into CXX_FLAGS as a default
2369 https://bugs.webkit.org/show_bug.cgi?id=120812
2371 Unreviewed build fix for EFL ports.
2373 * Source/cmake/OptionsCommon.cmake: Moved c++0x option here from WebKitHelpers.
2374 * Source/cmake/WebKitHelpers.cmake:
2376 2013-09-04 Michael Brüning <michael.bruning@digia.com>
2378 [Qt] Use correct library paths for prefix builds on Mac.
2379 https://bugs.webkit.org/show_bug.cgi?id=120635
2381 Reviewed by Tor Arne Vestbø.
2383 Due to a change of scope of the qmake force_independent configuration
2384 flag, the library paths in QtWebKit builds on the Mac are set to the
2385 QtWebKit build directory even for production builds.
2387 This patch sets the correct library paths for prefixed production builds
2388 while keeping the scope of the force_independent flag for non-production
2392 * Source/widgetsapi.pri:
2394 2013-09-04 Zan Dobersek <zdobersek@igalia.com>
2396 [GTK] Add support for the Wayland build target
2397 https://bugs.webkit.org/show_bug.cgi?id=120627
2399 Reviewed by Gustavo Noronha Silva.
2401 Add support for building the GTK port with Wayland as the target. The Wayland target can be the sole target
2402 that's enabled, or it can be enabled in parallel with the X11 target.
2404 Each of those two targets, when enabled, checks for the corresponding GTK+ windowing dependency being present.
2405 In the case of only the Wayland target being enabled, the accelerated compositing feature is disabled at
2406 build-time as the feature is not yet supported under the Wayland display protocol. X11-based plugin support is
2407 also disabled under that configuration, even if the WebKitPluginProcess is still built but is left non-operational.
2408 GLX support is also disabled if not building the X11 target.
2410 The Wayland target can be enabled through using the --with-target configuration option that now accepts two
2412 - 'wayland' - only enables the Wayland target,
2413 - 'x11,wayland' - enables the X11 and Wayland targets that are to be built in parallel.
2415 This makes it possible to build the GTK port of WebKit with the Wayland target, relying solely on the GTK+
2416 dependency that only has the Wayland backend enabled, and removes linking against any X11-related library.
2417 Note that at the moment there seem to be other dependencies that still link to X11-related libraries.
2418 Complete functionality is not yet guaranteed, but is of course the goal.
2420 * Source/autotools/FindDependencies.m4: Store the version of the basic GTK+ dependency that was found.
2421 This is later used to check that the GTK+ X11 and GTK+ Wayland dependencies are of the same version. The
2422 X11-specific dependencies are grouped into one section (apart from the XComposite and XDamage dependencies),
2423 also checking for the GTK+ X11 dependency. If the X11 target is not enabled, the GLX dependency is disabled.
2424 Additionally check for the GTK+ Wayland dependency if the Wayland target is enabled.
2425 We only check for the presence and correct version of the GTK+ X11 and Wayland dependencies, if necessary.
2426 Check for the XComposite and XDamage dependencies if the X11 target is enabled (in addition to the OpenGL
2427 headers being present).
2428 In case of the Wayland target being enabled while the X11 target is not, disable the accelerated compositing
2429 feature as there's no support yet for it under the Wayland display protocol.
2430 * Source/autotools/PrintBuildConfiguration.m4: The build configuration should now print out 'GDK targets'.
2431 * Source/autotools/ReadCommandLineArguments.m4: The --with-target option can now take two additional values,
2432 'wayland' and 'x11,wayland'. The first one enables only the Wayland target, while the second one enables both
2433 X11 and Wayland targets. This makes it possible to build the GTK port with both X11 and Wayland display protocols
2434 supported in the same build.
2435 We must now check the outcoming with_target variable to see if the special case of building one or both of the
2436 possible parallel targets was chosen. We define with_x11_target and with_wayland_target variables if the
2437 with_target value applies to that case.
2438 * Source/autotools/SetupAutoconfHeader.m4: Do not define the XP_UNIX macro on builds that enable the Wayland-only
2439 target. It should still be defined if we're building both X11 and Wayland targets in parallel.
2440 * Source/autotools/SetupAutomake.m4: Define TARGET_X11 and TARGET_WAYLAND Automake conditionals if the new
2441 with_x11_target or with_wayland_target variables were set, respectively. Additionall, define the TARGET_X11_OR_WAYLAND
2442 Automake conditional if we're building either of the two targets.
2444 2013-09-03 Patrick Gansterer <paroga@webkit.org>
2446 [CMake] Fix detection of x86_64 platform with MSVC
2447 https://bugs.webkit.org/show_bug.cgi?id=116662
2449 Reviewed by Gyuyoung Kim.
2451 Use ${MSVC_CXX_ARCHITECTURE_ID} instead of ${CMAKE_SYSTEM_PROCESSOR}, since
2452 the later one just resolves to the host processor on Windows.
2456 2013-08-29 Sam Weinig <sam@webkit.org>
2458 Add ENABLE guards for Promises
2459 https://bugs.webkit.org/show_bug.cgi?id=120488
2461 Reviewed by Andreas Kling.
2463 * Source/autotools/SetupWebKitFeatures.m4:
2464 * Source/cmake/WebKitFeatures.cmake:
2465 * Source/cmakeconfig.h.cmake:
2467 2013-08-28 Gustavo Noronha Silva <gns@gnome.org>
2469 [GTK] Enable maintainer mode configure switch
2470 https://bugs.webkit.org/show_bug.cgi?id=120424
2472 Reviewed by Martin Robinson.
2474 The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
2475 regeneration will happen for a regular tarball build; ostree builders, for instance, are very
2476 conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
2477 (2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
2478 the version of aclocal that was used for generating the tarball (1.13).
2480 * configure.ac: enable maintainer mode feature.
2482 2013-08-28 Zan Dobersek <zdobersek@igalia.com>
2484 [GTK] Add support for building JSC with FTL JIT enabled
2485 https://bugs.webkit.org/show_bug.cgi?id=120270
2487 Reviewed by Filip Pizlo.
2489 * Source/autotools/FindDependencies.m4: Disable FTL JIT if the JIT itself is disabled or if the C++ compiler
2490 being used is not Clang. Check for llvm-config and use it to properly test for the LLVM >= 3.4 dependency.
2491 * Source/autotools/PrintBuildConfiguration.m4: Print out the status of the FTL JIT support.
2492 * Source/autotools/ReadCommandLineArguments.m4: Add a configuration flag for enabling the feature, defaulting
2493 to 'no' used as the default value for now. This should switch to 'auto' at some point in future.
2494 * Source/autotools/SetupAutoconfHeader.m4: Define ENABLE_FTL_JIT to a specific value if possible.
2495 Also define HAVE_LLVM to 1 if the LLVM dependency was satisfied.
2497 2013-08-28 Simon Hausmann <simon.hausmann@digia.com>
2499 [Qt] Unreviewed trivial build adjustment
2501 * Source/sync.profile: Don't depend on qtjsbackend anymore. It's not needed in Qt 5.2
2502 anymore (but this section of sync.profile is only used by the CI system, so no impact
2505 2013-08-24 Carlos Garcia Campos <cgarcia@igalia.com>
2507 Unreviewed. Fix GTK+ build after r154541.
2509 * Source/autotools/symbols.filter: Export symbols required by
2512 2013-08-15 Zan Dobersek <zdobersek@igalia.com>
2514 Unreviewed GTK build fix after r154106.
2516 * Source/autotools/symbols.filter: Export the proper Element::shadowRoot() symbol.
2518 2013-08-14 Filip Pizlo <fpizlo@apple.com>
2520 Typed arrays should be rewritten
2521 https://bugs.webkit.org/show_bug.cgi?id=119064
2523 Reviewed by Oliver Hunt.
2525 Automake work courtesy of Zan Dobersek <zdobersek@igalia.com>.
2527 * Source/autotools/symbols.filter:
2529 2013-08-14 Tim Horton <timothy_horton@apple.com>
2531 Un-inline dataLog dumpers for IntSize and IntPoint
2532 https://bugs.webkit.org/show_bug.cgi?id=119697
2534 Reviewed by Sam Weinig.
2536 Avoid regressing build performance by moving IntSize::dump and IntPoint::dump elsewhere.
2538 * Source/autotools/symbols.filter:
2540 2013-08-14 Martin Robinson <mrobinson@igalia.com>
2542 [GTK] [CMake] Add support for building TestWebKitAPI
2543 https://bugs.webkit.org/show_bug.cgi?id=116987
2545 Reviewed by Philippe Normand.
2547 * Source/cmake/OptionsGTK.cmake: Turn on the API tests in the settings.
2549 2013-08-13 Zan Dobersek <zdobersek@igalia.com>
2551 [Autotools] Unicode's CFLAGS enforce -D_FORTIFY_SOURCE=2, -D_REENTRANT=1, causing faulty Clang builds
2552 https://bugs.webkit.org/show_bug.cgi?id=119685
2554 Reviewed by Gustavo Noronha Silva.
2556 icu-config includes '-D_FORTIFY_SOURCE=2 -D_REENTRANT=1' when printing out C preprocessor flags that are used
2557 as the C compiler flags to avoid other unwanted compiler options. This causes problems when building optimized
2558 builds with Clang because of a bug in that compiler:
2559 http://llvm.org/bugs/show_bug.cgi?id=16821
2561 To avoid that, the C preprocessor search flags, as printed by `icu-config --cppflags-searchpath` are now used
2562 the Unicode dependency's C compiler flags, avoiding unconditionally specifying the two macros.
2564 To adjust for that, the `-pthread` flag is added to the global CFLAGS and CXXFLAGS variables, ensuring
2565 the _REENTRANT define is set to 1 and declaring the flag globally instead of relying on Glib dependency's
2566 C compiler flags to do so for us. -D_FORTIFY_SOURCE=2 is only added to the CFLAGS and CXXFLAGS variables if
2567 the compiler in use is gcc or g++, preventing the Clang builds to malfunction.
2569 * Source/autotools/FindDependencies.m4:
2570 * Source/autotools/SetupCompilerFlags.m4:
2572 2013-08-13 Zan Dobersek <zdobersek@igalia.com>
2574 [Autotools] Don't compare $CC, $CXX to exact compiler names
2575 https://bugs.webkit.org/show_bug.cgi?id=119683
2577 Reviewed by Gustavo Noronha Silva.
2579 Instead of comparing $CC and $CXX to exact compiler names (like 'gcc', 'clang++' etc.),
2580 use the compiler version checks to also specify the broader compiler collection of which
2581 the used compiler is a member of. This avoids failures in some border-line cases where
2582 the user would still use either a GCC or a Clang compiler but provide it through a symbolic
2583 link that was specified via the CC/CXX environment variables.
2585 * Source/autotools/CheckSystemAndBasicDependencies.m4: Store the detected C/C++ compiler collection
2586 in c_compiler/cxx_compiler. Throw an error if no supported compiler was found.
2587 * Source/autotools/SetupCompilerFlags.m4: Test for a specific compiler by checking against
2588 c_compiler/cxx_compiler rather than CC/CXX values.
2590 2013-08-12 Zan Dobersek <zdobersek@igalia.com>
2592 [Autotools] Adjust the help string for the configure's --enable-optimizations flag
2593 https://bugs.webkit.org/show_bug.cgi?id=119682
2595 Reviewed by Martin Robinson.
2597 * Source/autotools/ReadCommandLineArguments.m4: Remove the 'GCC only' part of the help
2598 string for the --enable-optimizations flag. This is not true and can lead to confusion
2599 since the optimizations can be applied when compiling with Clang as well.
2601 2013-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
2603 Unreviewed. Update NEWS and Versions.m4 for 2.1.4 release.
2605 * Source/autotools/Versions.m4: Update version numbers.
2607 2013-08-09 Zan Dobersek <zdobersek@igalia.com>
2609 [Automake] Clean up OpenGL graphics configuration sections
2610 https://bugs.webkit.org/show_bug.cgi?id=119554
2612 Reviewed by Martin Robinson.
2614 Clean up sections in the Automake configuration process that are configuring the OpenGL graphics
2615 features and dependencies. Remove unnecessary variable assignments, merge similar code paths,
2616 clarify a couple of comments and error messages and fix a few whitespace problems.
2618 * Source/autotools/FindDependencies.m4:
2619 * Source/autotools/ReadCommandLineArguments.m4:
2620 * Source/autotools/SetupAutomake.m4:
2622 2013-08-04 Sam Weinig <sam@webkit.org>
2624 Remove support for HTML5 MicroData
2625 https://bugs.webkit.org/show_bug.cgi?id=119480
2627 Reviewed by Anders Carlsson.
2629 * Source/autotools/SetupWebKitFeatures.m4:
2630 * Source/cmake/OptionsBlackBerry.cmake:
2631 * Source/cmake/OptionsEfl.cmake:
2632 * Source/cmake/OptionsGTK.cmake:
2633 * Source/cmake/WebKitFeatures.cmake:
2634 * Source/cmakeconfig.h.cmake:
2636 2013-08-06 Simon Pena <simon.pena@samsung.com>
2638 Build fix for GTK 32-bit after r153736
2640 * Source/autotools/symbols.filter: expose WebCore::SerializedScriptValue::create.
2642 2013-08-06 Simon Pena <simon.pena@samsung.com>
2644 Build fix for GTK after r153736
2646 * Source/autotools/symbols.filter: expose missing symbols
2647 WebCore::SerializedScriptValue::create and WebCore::toJS to Internals.
2649 2013-08-05 Zan Dobersek <zdobersek@igalia.com>
2651 [Automake] Define ENABLE_JIT through the Autoconf header
2652 https://bugs.webkit.org/show_bug.cgi?id=119445
2654 Reviewed by Martin Robinson.
2656 Instead of defining the ENABLE_JIT value through JSC_CPPFLAGS, the feature define is
2657 set to be either enabled or disabled through the Autoconf header, based on the value
2658 passed through the configuration flag. The 'auto' value is used as default, meaning
2659 that the feature is enabled or disabled in the Platform.h header based on the platform
2660 configuration (OS, architecture etc.).
2662 * Source/autotools/FindDependencies.m4: Remove the JSC_CPPFLAGS definition.
2663 * Source/autotools/ReadCommandLineArguments.m4: Change the default value to 'auto' instead
2664 of 'autodetect', as used by other configuration options that take a similar approach to enabling
2666 * Source/autotools/SetupAutoconfHeader.m4: Set a strict value for the ENABLE_JIT define through
2667 the Autoconf header if the feature was specifically enabled or disabled.
2669 2013-08-04 Zalan Bujtas <zalan@apple.com>
2671 Background doesn't fully repaint when body has margins.
2672 https://bugs.webkit.org/show_bug.cgi?id=119033
2674 Reviewed by Simon Fraser.
2676 Ensure that background-color changes do not leave unpainted areas when
2679 Both <body> and <html> background-color get propagated up to the viewport.
2680 If <body> has background-color attribute set, while <html> doesn't, the color is
2681 applied not only on the <body> but on both the <html> and the viewport. However,
2682 it's not enough to mark the RenderView dirty because with tiles backing on,
2683 there could be areas outside of the viewport that need repaint. By marking
2684 the RenderView's graphics layer dirty instead, we ensure that all the related
2685 tiles get marked dirty too and the new background color covers all areas.
2687 Manual test added. When forcing top-level composition on (even with embedded iframe to
2688 make sure we don't do paintsIntoWindow rendering), the test case execution changes so much,
2689 that the repaint rects don't reflect the functionality difference anymore.
2691 Reviewed by Simon Fraser.
2693 * ManualTests/compositing/background-color-change-on-body-with-margin.html: Added.
2695 2013-07-30 Ádám Kallai <kadam@inf.u-szeged.hu>
2697 [Qt] Workaround to make syncqt run and generate forwarding headers in SVN repositories too.
2698 https://bugs.webkit.org/show_bug.cgi?id=118725.
2700 Reviewed by Tor Arne Vestbø.
2704 2013-07-30 Carlos Garcia Campos <cgarcia@igalia.com>
2706 Unreviewed. Update NEWS and Versions.m4 for 2.1.4 release.
2708 * Source/autotools/Versions.m4: Bump version numbers.
2710 2013-07-27 Ryuan Choi <ryuan.choi@samsung.com>
2712 [EFL] Bump required version of EFL to 1.7
2713 https://bugs.webkit.org/show_bug.cgi?id=119144
2715 Reviewed by Christophe Dumez.
2717 We have supported 1.6 for Tizen build since r137203.
2718 But Tizen now supports 1.7+ after Tizen released 2.0.
2720 * Source/cmake/OptionsEfl.cmake:
2721 Bumped EFL to 1.7 and removed promotion.
2723 2013-07-25 Christophe Dumez <ch.dumez@sisa.samsung.com>
2725 Unreviewed EFL build fix after r153315.
2727 Use -std=gnu++0x instead of -std=c++0x as we rely on GNU extensions such as
2730 * Source/cmake/WebKitHelpers.cmake:
2732 2013-07-25 Ryuan Choi <ryuan.choi@samsung.com>
2734 [CMAKE] Enforce c++0x for cmake based ports
2735 https://bugs.webkit.org/show_bug.cgi?id=119081
2737 Reviewed by Gyuyoung Kim.
2739 * Source/cmake/WebKitHelpers.cmake:
2740 Enforce c++0x for all cmake based ports to fix build break.
2742 2013-07-24 Ryuan Choi <ryuan.choi@samsung.com>
2744 [EFL][CMAKE] Fix wrong syntax about option commands
2745 https://bugs.webkit.org/show_bug.cgi?id=119035
2747 Reviewed by Christophe Dumez.
2749 second argument of cmake option command should be description.
2751 * Source/cmake/OptionsEfl.cmake: Added description instead of wrong initial value.
2753 2013-07-23 Tim Horton <timothy_horton@apple.com>
2755 Add a test for plug-in unavailability indicator obscurity detection
2756 https://bugs.webkit.org/show_bug.cgi?id=119007
2758 Reviewed by Anders Carlsson.
2760 * Source/autotools/symbols.filter:
2761 Expose RenderEmbeddedObject::isReplacementObscured to internals.
2763 2013-07-16 Balazs Kelemen <kbalazs@webkit.org>
2765 [CMake] Undefined references should be detected at build time
2766 https://bugs.webkit.org/show_bug.cgi?id=110236
2768 Reviewed by Christophe Dumez.
2770 Pass the --no-undefined argument to the linker on platforms where it is available.
2772 * Source/cmake/OptionsCommon.cmake:
2774 2013-07-16 Carlos Garcia Campos <cgarcia@igalia.com>
2776 [GTK] Remove compile warnings about GTK+ API deprecated after 3.6
2777 https://bugs.webkit.org/show_bug.cgi?id=118237
2779 Reviewed by Philippe Normand.
2781 We depend on GTK+3.6 so we are not interested in compile warnings
2782 about deprecated API after 3.6
2784 * Source/autotools/SetupAutoconfHeader.m4: Define
2785 GDK_VERSION_MIN_REQUIRED in config.h.
2787 2013-07-09 Carlos Garcia Campos <cgarcia@igalia.com>
2789 Unreviewed. Update NEWS and Versions.m4 for 2.1.3 release.
2791 * Source/autotools/Versions.m4: Bump version numbers.
2793 2013-07-08 Andy Estes <aestes@apple.com>
2795 Add WebInspectorUI to WebKit.xcworkspace
2796 https://bugs.webkit.org/show_bug.cgi?id=118491
2798 Reviewed by Sam Weinig.
2800 * WebKit.xcworkspace/contents.xcworkspacedata:
2802 2013-07-08 ChangSeok Oh <changseok.oh@collabora.com>
2804 [GTK] Acceleration description isn't displayed in configured options.
2805 https://bugs.webkit.org/show_bug.cgi?id=118441
2807 Reviewed by Gustavo Noronha Silva.
2809 The acceleration_backend_description has been changed to acceleration_description from r152275.
2811 * Source/autotools/PrintBuildConfiguration.m4:
2813 2013-07-08 Zan Dobersek <zdobersek@igalia.com>
2815 [Autoconf] Define WTF_USE_OPENGL when OpenGL was found
2816 https://bugs.webkit.org/show_bug.cgi?id=118341
2818 Reviewed by Gustavo Noronha Silva.
2820 After r152275, WTF_USE_OPENGL is only defined if the accelerated compositing is enabled.
2821 This breaks the build if disabling the accelerated compositing feature as the OpenGL-specific
2822 code is not compiled anymore even if it's still required.
2824 To avoid that, WTF_USE_OPENGL should be defined if OpenGL was found. The accelerated compositing
2825 feature also relies on this condition, exiting the configuration process with an error otherwise.
2827 * Source/autotools/SetupAutoconfHeader.m4:
2829 2013-07-01 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2831 [GTK] Remove unsupported AC backends
2832 https://bugs.webkit.org/show_bug.cgi?id=117362
2834 Reviewed by Martin Robinson.
2836 * Source/autotools/FindDependencies.m4: remove checks related to acceleration backend,
2837 turn them into a check for OpenGL being available, simply.
2838 * Source/autotools/ReadCommandLineArguments.m4: remove command line option to select
2839 accelerated backend, it's now auto-detected.
2840 * Source/autotools/SetupAutoconfHeader.m4: no longer defines USE_CLUTTER and
2841 USE_TEXTURE_MAPPER_CAIRO.
2842 * Source/autotools/SetupAutomake.m4: remove checks related to acceleration backend,
2843 turn them into a check for OpenGL being available, simply.
2844 * Source/autotools/Versions.m4: no longer check for clutter/clutter-gtk.
2846 2013-07-01 Timothy Hatcher <timothy@apple.com>
2848 Link to WebInspectorUI.framework at build time instead of soft linking.
2850 https://bugs.webkit.org/show_bug.cgi?id=118261
2852 Reviewed by Joseph Pecoraro.
2854 * Source/Makefile: Build WebInspectorUI before WebKit and WebKit2.
2856 2013-06-28 Sean Bright <sean@malleable.com>
2858 [Autotools] Properly quote harfbuzz-icu pkg-config check
2859 https://bugs.webkit.org/show_bug.cgi?id=118186
2861 Reviewed by Carlos Garcia Campos.
2863 A secondary test was added in r150963 to check for harfbuzz-icu
2864 when it was split into two packages, but the test is not properly
2865 quoted. If the test fails you get an error about missing
2866 version "./configure.9.8" instead of the expected "0.9.8."
2868 * Source/autotools/FindDependencies.m4:
2870 2013-06-27 Christophe Dumez <ch.dumez@sisa.samsung.com>
2872 Remove [NoInterfaceObject] from WorkerGlobalScope
2873 https://bugs.webkit.org/show_bug.cgi?id=118071
2875 Reviewed by Kentaro Hara.
2877 Update GENERATE_BINDINGS CMake macro to take 2 additional parameters
2878 now needed by the preprocess-idls.pl script.
2880 * Source/cmake/WebKitMacros.cmake:
2882 2013-06-24 Ryuan Choi <ryuan.choi@samsung.com>
2884 [CMAKE] Clear unused cmakedefines
2885 https://bugs.webkit.org/show_bug.cgi?id=117931
2887 Reviewed by Christophe Dumez.
2889 * Source/cmakeconfig.h.cmake:
2890 Removed ENABLE_AS_IMAGE, ENABLE_LEGACY_WEBKIT_BLOB_BUILDER and
2891 ENABLE_CLIENT_BASED_GEOLOCATION cmakedefines which already removed.
2893 2013-06-20 Ryuan Choi <ryuan.choi@samsung.com>
2895 [CMAKE][EFL] Enable DOM4 Events Constructor
2896 https://bugs.webkit.org/show_bug.cgi?id=117858
2898 Reviewed by Laszlo Gombos.
2900 * Source/cmake/OptionsEfl.cmake: Enabled ENABLE_DOM4_EVENTS_CONSTRUCTOR.
2901 * Source/cmake/WebKitFeatures.cmake: Added ENABLE_DOM4_EVENTS_CONSTRUCTOR.
2902 * Source/cmakeconfig.h.cmake: Ditto.
2904 2013-06-20 Zan Dobersek <zdobersek@igalia.com>
2906 [GTK] remove bashism from configure
2907 https://bugs.webkit.org/show_bug.cgi?id=117796
2909 Reviewed by Gustavo Noronha Silva.
2911 * Source/autotools/FindDependencies.m4: Perform string appending by redeclaring the base string to the value
2912 of the base string followed by the string that's being appended. This replaces the use of the '+=' operator
2913 that works under bash but is not supported by other shells.
2915 2013-06-18 Ryosuke Niwa <rniwa@webkit.org>
2917 REGRESSION(r147602): Search text field doesn't render selection when it has some :focus rules
2918 https://bugs.webkit.org/show_bug.cgi?id=117747
2920 Reviewed by Kent Tamura.
2922 * ManualTests/search-select-all-with-focus-style.html: Added.
2924 2013-06-18 Carlos Garcia Campos <cgarcia@igalia.com>
2926 Unreviewed. Update NEWS and Versions.m4 for 2.1.2 release.
2928 * Source/autotools/Versions.m4: Bump version numbers.
2930 2013-06-18 Xabier Rodriguez Calvar <calvaris@igalia.com>
2932 [GTK][GStreamer] Fullscreen option in video element context menu not working
2933 https://bugs.webkit.org/show_bug.cgi?id=105191
2935 Fullscreen with native controls is outdated and even broken in
2936 [GTK][WK2], so they are deactivated for now.
2938 Reviewed by Philippe Normand.
2940 * Source/autotools/SetupAutoconfHeader.m4: Removed the use of
2941 fullscreen native media controls.
2943 2013-06-17 Michael Brüning <michael.bruning@digia.com>
2945 [Qt] Remove Qt specific QTKIT flagged code.
2946 https://bugs.webkit.org/show_bug.cgi?id=117635
2948 Reviewed by Simon Hausmann.
2950 Due to disabling QTKIT for Qt in r151546, the
2951 code the flags that are not taken into account
2952 anymore and the code that has been rendered
2953 unreachable by this are removed.
2955 * Source/widgetsapi.pri:
2957 2013-06-17 Carlos Garcia Campos <cgarcia@igalia.com>
2959 Unreviewed. Rename gobject_introspection_required variable.
2961 As gobject_introspection_required_version for consistency with all
2962 other required_version variables.
2964 * Source/autotools/FindDependencies.m4:
2965 * Source/autotools/Versions.m4:
2967 2013-06-14 Patrick Gansterer <paroga@webkit.org>
2969 Introduce USE(WINGDI) for the Windows port
2970 https://bugs.webkit.org/show_bug.cgi?id=116138
2972 Reviewed by Ryosuke Niwa.
2974 Using USE(WINGDI) instead of OS(WINCE) will allow us to
2975 compile the GDI based Windows port on WinNT too.
2977 * Source/cmake/OptionsWinCE.cmake:
2979 2013-06-14 Manuel Rego Casasnovas <rego@igalia.com>
2981 [GTK][WK1] Missing symbols
2982 https://bugs.webkit.org/show_bug.cgi?id=117629
2984 Unreviewed GTK+ build fix.
2986 * Source/autotools/symbols.filter: Added missing symbols needed when
2989 2013-06-13 Max Vujovic <mvujovic@adobe.com>
2991 [CSS Regions] Selection dragged from a region paints its background
2992 https://bugs.webkit.org/show_bug.cgi?id=117607
2994 Reviewed by Alexandru Chiculita.
2996 Add a manual test for the painting of a dragged selection from a region. We don't have an
2997 automated way to test this yet. This test is similar to the other manual selection dragging
2998 tests (e.g. ManualTests/drag-image.html).
3000 * ManualTests/regions/drag-selection-painting.html: Added.
3002 2013-06-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
3004 [GTK] [WK2] Found missing symbol when running some tests
3005 https://bugs.webkit.org/show_bug.cgi?id=117598
3007 Reviewed by Martin Robinson.
3009 * Source/autotools/symbols.filter: Added missing
3010 _ZN7WebCore28notImplementedLoggingChannelEv.
3012 2013-06-12 Alberto Garcia <agarcia@igalia.com>
3014 [BlackBerry] Remove dead WebDOM code
3015 https://bugs.webkit.org/show_bug.cgi?id=113370
3017 Reviewed by Anders Carlsson.
3019 BlackBerry PR 347565
3020 Internally reviewed by Charles Wei.
3022 * Source/cmake/OptionsBlackBerry.cmake:
3024 2013-06-06 Timothy Hatcher <timothy@apple.com>
3026 Add WebInspectorUI to the Makefile.
3028 Reviewed by Mark Rowe.
3032 2013-06-11 Seokju Kwon <seokju.kwon@gmail.com>
3034 Remove leftover wxWebkit code
3035 https://bugs.webkit.org/show_bug.cgi?id=117471
3037 Reviewed by Andreas Kling.
3039 * Source/cmake/WebKitPackaging.cmake:
3041 2013-06-07 Zan Dobersek <zdobersek@igalia.com>
3043 [regression] build failure WebKitFontFamilyNames.h missing
3044 https://bugs.webkit.org/show_bug.cgi?id=117178
3046 Reviewed by Sam Weinig.
3048 * GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.
3050 2013-06-05 Bear Travis <betravis@adobe.com>
3052 [CSS Exclusions][CSS Shapes] Split CSS Exclusions & Shapes compile & runtime flags
3053 https://bugs.webkit.org/show_bug.cgi?id=117172
3055 Reviewed by Alexandru Chiculita.
3057 Adding the CSS_SHAPES compile flag.
3059 * Source/autotools/SetupWebKitFeatures.m4:
3060 * Source/autotools/symbols.filter:
3061 * Source/cmake/WebKitFeatures.cmake:
3062 * Source/cmakeconfig.h.cmake:
3064 2013-06-05 Zan Dobersek <zdobersek@igalia.com>
3066 Move MemoryInfo under window.internals
3067 https://bugs.webkit.org/show_bug.cgi?id=117197
3069 Reviewed by Ryosuke Niwa.
3071 * Source/autotools/symbols.filter: Export the required symbol.
3073 2013-06-04 Christophe Dumez <ch.dumez@sisa.samsung.com>
3075 Automatically generate WorkerContext constructor attributes
3076 https://bugs.webkit.org/show_bug.cgi?id=117183
3078 Reviewed by Kentaro Hara.
3080 Update GENERATE_BINDINGS macro to take an additional _workercontext_constructors_file
3083 * Source/cmake/WebKitMacros.cmake:
3085 2013-06-03 Eduardo Lima Mitev <elima@igalia.com>
3087 [EFL] Add ATK version 2.8.0 to efl jhbuild moduleset
3088 https://bugs.webkit.org/show_bug.cgi?id=116726
3090 Reviewed by Gyuyoung Kim.
3092 Bump required version of ATK to 2.8.0 in EFL CMake's build.
3094 * Source/cmake/FindATK.cmake: Adds macro to check required version
3095 * Source/cmake/OptionsEfl.cmake: Specifies required version of ATK to be 2.8.0
3097 2013-05-30 Alberto Garcia <agarcia@igalia.com>
3099 [GTK] Needs to check for harfbuzz-icu
3100 https://bugs.webkit.org/show_bug.cgi?id=116978
3102 Reviewed by Xan Lopez.
3104 HarfBuzz 0.9.18 splits harbuzz-icu into a separate library so we
3105 also need to check for it in order to get the necessary flags for
3106 the compiler and the linker.
3108 We keep this conditional for now since we still want to support
3109 earlier versions of HarfBuzz.
3111 * Source/autotools/FindDependencies.m4:
3113 2013-05-29 Kent Tamura <tkent@chromium.org>
3115 Remove leftover files for ENABLE_PAGE_POPUP and ENABLE_CALENDAR_PICKER
3116 https://bugs.webkit.org/show_bug.cgi?id=116999
3118 Reviewed by Anders Carlsson.
3120 * ManualTests/forms/calendar-picker-crash-by-type-change.html: Removed.
3121 * ManualTests/forms/calendar-picker.html: Removed.
3122 * ManualTests/forms/color-suggestion-picker.html: Removed.
3123 * ManualTests/forms/date-suggestion-picker.html: Removed.
3125 2013-05-29 Martin Robinson <mrobinson@igalia.com>
3127 Fix more CMake GTK+ build issues after r150336
3129 * Source/cmake/OptionsGTK.cmake: Actually set the new output name variable
3130 and be sure to set WTF_USE_EGL when EGL is enabled.
3132 2013-05-29 Carlos Garcia Campos <cgarcia@igalia.com>
3134 Unreviewed. Update NEWS and Versions.m4 for 2.1.1 release.
3136 * Source/autotools/Versions.m4: Bump version numbers.
3138 2013-05-29 Carlos Garcia Campos <cgarcia@igalia.com>
3140 Unreviewed. Fix make distcheck.
3142 * GNUmakefile.am: Add WebKitFeatures.h and WebKitFeatures.txt to
3145 2013-05-26 Jon Lee <jonlee@apple.com>
3147 [WK2] Notifications clobber each other with multiple processes
3148 https://bugs.webkit.org/show_bug.cgi?id=116428
3149 <rdar://problem/13935191>
3151 Reviewed by Darin Adler.
3153 * ManualTests/notification-in-multiple-windows.html: Added.
3155 2013-05-27 Patrick Gansterer <paroga@webkit.org>
3157 Use ICU_INCLUDE_DIRS in BlackBerry CMake files
3158 https://bugs.webkit.org/show_bug.cgi?id=116210
3160 Reviewed by Rob Buis.
3162 Set and use the ICU_INCLUDE_DIRS variable to avoid
3163 duplicated adding of the ICU include directory.
3165 * Source/cmake/OptionsBlackBerry.cmake:
3167 2013-05-24 Anders Carlsson <andersca@apple.com>
3169 Remove PagePopup code
3170 https://bugs.webkit.org/show_bug.cgi?id=116732
3172 Reviewed by Andreas Kling.
3174 * Source/cmakeconfig.h.cmake:
3175 Remove ENABLE_PAGE_POPUP.
3177 2013-05-21 Martin Robinson <mrobinson@igalia.com>
3179 [GTK] [CMake] Add support for building WebKit2
3180 https://bugs.webkit.org/show_bug.cgi?id=116372
3182 Reviewed by Gustavo Noronha Silva.
3184 * Source/cmake/FindWebP.cmake: Added.
3185 * Source/cmake/OptionsGTK.cmake: Turn on WebKit2 and the plugin process and also look
3186 for WebP. These missing symbols were hidden up until now. ENABLE_TEXTURE_MAPPER was
3187 also incorrect specified.
3189 2013-05-21 Zan Dobersek <zdobersek@igalia.com>
3191 [GTK] Compile everything in C++11 mode
3192 https://bugs.webkit.org/show_bug.cgi?id=116452
3194 Reviewed by Anders Carlsson.
3196 * Source/autotools/SetupCompilerFlags.m4: Use the C++11 standard by default when compiling C++ source code.
3197 Perform some minor cleanup around the comments and the order of specifying additional CXXFLAGS entries.
3199 2013-05-21 Carlos Garcia Campos <cgarcia@igalia.com>
3201 [BlackBerry] Make PagePopup implementation independent from WebCore
3202 https://bugs.webkit.org/show_bug.cgi?id=116448
3204 Reviewed by Anders Carlsson.
3206 * Source/cmake/OptionsBlackBerry.cmake: Do not enable PAGE_POPUP
3209 2013-05-20 Christophe Dumez <ch.dumez@sisa.samsung.com>
3211 [EFL] Reenabled INDEXED_DATABASE after r150344
3212 https://bugs.webkit.org/show_bug.cgi?id=116430
3214 Reviewed by Gyuyoung Kim.
3216 Reenable INDEXED_DATABASE flag for EFL port now that WebKit2
3217 build was fixed in r150344.
3219 * Source/cmake/OptionsEfl.cmake:
3221 2013-05-19 Anders Carlsson <andersca@apple.com>
3223 Remove link prerendering code
3224 https://bugs.webkit.org/show_bug.cgi?id=116415
3226 Reviewed by Darin Adler.
3228 This code was only used by Chromium and is dead now.
3230 * Source/autotools/SetupWebKitFeatures.m4:
3231 * Source/cmake/WebKitFeatures.cmake:
3232 * Source/cmakeconfig.h.cmake:
3234 2013-05-18 Patrick Gansterer <paroga@webkit.org>
3236 [CMake] Replace *_LIBRARY_NAME with *_OUTPUT_NAME
3237 https://bugs.webkit.org/show_bug.cgi?id=114554
3239 Reviewed by Gyuyoung Kim.
3241 Using variables as target names is very uncommon in CMake.
3242 The usual way to specify the name of the resulting binary
3243 is to set the OUTPUT_NAME target property.
3246 * Source/CMakeLists.txt:
3247 * Source/PlatformEfl.cmake:
3248 * Source/PlatformGTK.cmake:
3249 * Source/cmake/OptionsBlackBerry.cmake:
3250 * Source/cmake/OptionsEfl.cmake:
3251 * Source/cmake/OptionsGTK.cmake:
3252 * Source/cmake/WebKitHelpers.cmake:
3253 * Source/cmake/gtest/CMakeLists.txt:
3255 2013-05-18 Christophe Dumez <ch.dumez@sisa.samsung.com>
3257 Unreviewed EFL build fix.
3259 Temporarily disabled INDEXED_DATABASE at compile-time as it breaks
3260 WK2 build after r150305.
3262 * Source/cmake/OptionsEfl.cmake:
3264 2013-05-18 Alberto Garcia <agarcia@igalia.com>
3266 [GTK] Parallel build fails if gtk-doc is enabled
3267 https://bugs.webkit.org/show_bug.cgi?id=116227
3269 Reviewed by Martin Robinson.
3272 Define an empty noinst_DATA variable where other automake files
3273 can add additional objects to be built.
3275 2013-05-16 Martin Robinson <mrobinson@igalia.com>
3277 [GTK] [CMake] Disable the shadow DOM
3278 https://bugs.webkit.org/show_bug.cgi?id=116237
3280 Reviewed by Gustavo Noronha Silva.
3282 * Source/cmake/OptionsGTK.cmake: Disable shadow DOM by default.
3284 2013-05-14 Martin Robinson <mrobinson@igalia.com>
3286 [GTK] Add support for building WebCore to the cmake build
3287 https://bugs.webkit.org/show_bug.cgi?id=116128
3289 Reviewed by Gustavo Noronha Silva.
3291 * Source/PlatformGTK.cmake: Added.
3292 * Source/cmake/OptionsGTK.cmake: Added more logic and variables to support WebCore and properly
3293 defined some existing variables.
3295 2013-05-15 Alexey Proskuryakov <ap@apple.com>
3297 More fixing after WebProcessShim renaming in r149074.
3299 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
3300 Updated to insert the right shim.
3302 2013-05-15 Patrick Gansterer <paroga@webkit.org>
3304 Consolidate lists in WTF CMake files
3305 https://bugs.webkit.org/show_bug.cgi?id=116142
3307 Reviewed by Martin Robinson.
3309 Move common files into the CMakeLists.txt to avoid duplicating the list of files.
3310 Also rebase the recently added GTK files to match the other CMake ports, since
3311 the submitted patch was based on an older version of the source tree.
3313 * Source/cmake/OptionsGTK.cmake:
3315 2013-05-14 Zan Dobersek <zdobersek@igalia.com>
3317 [GTK] Move generated ColorData.cpp, WebKitFontFamilyNames.(cpp|h) build targets into libPlatform
3318 https://bugs.webkit.org/show_bug.cgi?id=115921
3320 Reviewed by Gustavo Noronha Silva.
3322 * GNUmakefile.am: Add GENSOURCES_PLATFORM, platform_built_sources variables.
3324 2013-05-11 Martin Robinson <mrobinson@igalia.com>
3326 [GTK] Add a basic cmake build for WTF and JavaScriptCore
3327 https://bugs.webkit.org/show_bug.cgi?id=115967
3329 Reviewed by Laszlo Gombos.
3331 * CMakeLists.txt: Add GTK+ to the list of ports.
3332 * Source/CMakeLists.txt: We do not try to build WebCoreTestSupport when WebCore is disabled.
3333 * Source/cmake/FindGAIL3.cmake: Added.
3334 * Source/cmake/FindGDK3.cmake: Added.
3335 * Source/cmake/FindGStreamer.cmake: Use the passed in minimum version.
3336 * Source/cmake/FindGTK3.cmake: Added.
3337 * Source/cmake/FindXt.cmake: Added.
3338 * Source/cmake/OptionsEfl.cmake: Pass in the minimum version.
3339 * Source/cmake/OptionsGTK.cmake: Added.
3341 2013-05-11 Martin Robinson <mrobinson@igalia.com>
3343 Move defines to platform
3345 [GTK] Move defines that will never be configured to Platform.h
3346 https://bugs.webkit.org/show_bug.cgi?id=115965
3348 Reviewed by Andreas Kling.
3350 * Source/autotools/SetupAutoconfHeader.m4: Move some unchanging defines to Platform.h.
3352 2013-05-09 Christophe Dumez <ch.dumez@sisa.samsung.com>
3354 Add support for [NoInterfaceObject] Web IDL extended attribute
3355 https://bugs.webkit.org/show_bug.cgi?id=115714
3357 Reviewed by Kentaro Hara.
3359 Update GENERATE_BINDINGS macro to take an additional _window_constructors_file
3362 * Source/cmake/WebKitMacros.cmake:
3364 2013-05-08 José Dapena Paz <jdapena@igalia.com> and Zan Dobersek <zdobersek@igalia.com>
3366 [GTK] Plumb the Automake build system for the Battery Status API feature
3367 https://bugs.webkit.org/show_bug.cgi?id=115718
3369 Reviewed by Martin Robinson.
3371 * Source/autotools/FindDependencies.m4: Check for the upower-glib dependency if the feature is enabled.
3372 * Source/autotools/PrintBuildConfiguration.m4: Print out the feature status.
3373 * Source/autotools/ReadCommandLineArguments.m4: Check for the --enable-battery-status option. The deafult,
3374 when the option is not given, is to disable the feature.
3375 * Source/autotools/SetupWebKitFeatures.m4: Treat the ENABLE_BATTERY_STATUS define as configurable.
3376 * Source/autotools/symbols.filter: Export a couple of symbols that are used in the WebCore internals library.
3378 2013-05-08 Zan Dobersek <zdobersek@igalia.com>
3380 [Automake] Pass --no-demangle to the linker by default to get the mangled symbols
3381 https://bugs.webkit.org/show_bug.cgi?id=115732
3383 Reviewed by Gustavo Noronha Silva.
3385 * GNUmakefile.am: Pass the --no-demangle option to the linker by default. This is done by appending
3386 the flag to the LDFLAGS variable. While the AM_LDFLAGS variable would be more appropriate, it's not
3387 at all used when linking installable libraries like libwebkitgtk and libwebkit2gtk, so the LDFLAGS
3388 variable is used instead.
3390 2013-05-07 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3392 [CMAKE] Remove SHADOW_DOM from cmakeconfig.h.cmake
3393 https://bugs.webkit.org/show_bug.cgi?id=115712
3395 Reviewed by Andreas Kling.
3397 Nobody uses SHADOW_DOM in cmake.
3399 * Source/cmake/WebKitFeatures.cmake:
3400 * Source/cmakeconfig.h.cmake:
3402 2013-05-06 Mike Lattanzio <mlattanzio@blackberry.com>
3404 [BlackBerry] Enable and Expose Text Autosizing through BlackBerry::WebKit::WebSettings
3405 https://bugs.webkit.org/show_bug.cgi?id=113808
3407 Reviewed by Rob Buis.
3409 Set the ENABLE_TEXT_AUTOSIZING default to ON for BlackBerry.
3411 * Source/cmake/OptionsBlackBerry.cmake:
3413 2013-05-06 Christophe Dumez <ch.dumez@sisa.samsung.com>
3415 [EFL] Shadow DOM should be disabled at compile time
3416 https://bugs.webkit.org/show_bug.cgi?id=115635
3418 Reviewed by Andreas Kling.
3420 Disable Shadow DOM at compile time for EFL port. Shadow DOM code
3421 is being removed from the tree.
3423 * Source/cmake/OptionsEfl.cmake:
3425 2013-05-04 Dean Jackson <dino@apple.com>
3427 Animations and Transitions should not start when globally suspended
3428 https://bugs.webkit.org/show_bug.cgi?id=114915
3430 Reviewed by Sam Weinig.
3432 Export AnimationController::isSuspended().
3434 * Source/autotools/symbols.filter:
3436 2013-05-01 Benjamin Poulain <benjamin@webkit.org>
3438 Remove the remaining wscript
3439 https://bugs.webkit.org/show_bug.cgi?id=115459
3441 Reviewed by Andreas Kling.
3445 2013-05-01 Sergio Villar Senin <svillar@igalia.com>
3447 Show a block cursor in overtype mode
3448 https://bugs.webkit.org/show_bug.cgi?id=114819
3450 Reviewed by Ryosuke Niwa.
3452 * Source/autotools/symbols.filter: export some extra symbols for
3455 2013-04-30 Christophe Dumez <ch.dumez@sisa.samsung.com>
3457 [EFL] Enable scaled cursors
3458 https://bugs.webkit.org/show_bug.cgi?id=106242
3460 Reviewed by Gyuyoung Kim.
3462 Enable MOUSE_CURSOR_SCALE flag for EFL port.
3464 * Source/cmake/OptionsEfl.cmake:
3465 * Source/cmake/WebKitFeatures.cmake:
3467 2013-04-29 Zan Dobersek <zdobersek@igalia.com>
3469 [GTK] Disable Shadow DOM feature
3470 https://bugs.webkit.org/show_bug.cgi?id=115374
3472 Reviewed by Martin Robinson.
3474 Disable the Shadow DOM feature on the GTK port, the feature is planned for removal.
3476 * Source/autotools/SetupWebKitFeatures.m4:
3478 2013-04-28 Ryuan Choi <ryuan.choi@samsung.com>
3480 [EFL][CMAKE] Build break after r149259
3481 https://bugs.webkit.org/show_bug.cgi?id=115339
3483 Reviewed by Gyuyoung Kim.
3485 r149259 used c++11 features(Right angle bracket, Range-based for-loop).
3486 This patch enforces c++0x when cmake based ports build WebKit2 using gcc.
3488 * Source/cmake/WebKitHelpers.cmake:
3490 2013-04-22 Benjamin Poulain <benjamin@webkit.org>
3492 Remove the memory instrumentation code
3493 https://bugs.webkit.org/show_bug.cgi?id=114931
3495 Reviewed by Andreas Kling.
3497 * Source/autotools/symbols.filter:
3499 2013-04-22 Martin Robinson <mrobinson@igalia.com>
3501 [GTK] Enable introspection always for developer builds
3502 https://bugs.webkit.org/show_bug.cgi?id=114983
3504 Reviewed by Gustavo Noronha Silva.
3506 * Source/autotools/SetupAutoconfHeader.m4: No longer expose the ENABLE_INTROSPECTION
3507 autoconf header variable. It isn't used and it means that when introspection is enabled
3508 or disabled, there is an unnecessary full rebuild.
3510 2013-04-22 Zan Dobersek <zdobersek@igalia.com>
3512 [GTK] Set up libPlatform.la
3513 https://bugs.webkit.org/show_bug.cgi?id=114168
3515 Reviewed by Martin Robinson.
3517 * GNUmakefile.am: Define the platform_cppflags and platform_sources variables.
3519 2013-04-20 Zan Dobersek <zdobersek@igalia.com>
3521 Enable sub-pixel layout for the GTK port
3522 https://bugs.webkit.org/show_bug.cgi?id=94792
3524 Reviewed by Martin Robinson.
3526 * Source/autotools/SetupWebKitFeatures.m4: Enable the subpixel layout.
3528 2013-04-20 Andras Becsi <andras.becsi@digia.com>
3530 [Qt][Mac] Remove obsolete workaround for debug builds
3531 https://bugs.webkit.org/show_bug.cgi?id=114750
3533 Reviewed by Jocelyn Turcotte.
3535 This workaround made default builds fail with recent Qt5 because
3536 it removed the major version number from the library name, producing
3537 QtWebKitWidgets, whereas the linking command line tried to link
3538 against Qt5WebKitWidgets.
3539 Debug builds are possible with and without framework-enabled builds
3540 of Qt, but the debug versions of the Qt libraries have to be present.
3541 Debug builds with a release version of Qt are not possible on Mac
3542 since for debug builds qmake produces a linker command line where
3543 all the Qt libraries have the "_debug" suffix, therefore if the debug
3544 libraries are missing the build fails.
3546 * Source/widgetsapi.pri:
3548 2013-04-19 Martin Robinson <mrobinson@igalia.com>
3550 [GTK] JSCore.gir.in has a few problems
3551 https://bugs.webkit.org/show_bug.cgi?id=114710
3553 Reviewed by Philippe Normand.
3555 * GNUmakefile.am: Move common GIR initialization here from WebKit1.
3556 * configure.ac: Updated to reflect new JSC gir file location.
3558 2013-04-18 Ryuan Choi <ryuan.choi@gmail.com>
3560 [EFL] Build break when using cmake without CMAKE_BUILD_TYPE
3561 https://bugs.webkit.org/show_bug.cgi?id=114835
3563 Unreviewed build fix.
3565 * Source/cmake/OptionsEfl.cmake:
3567 2013-04-16 Patrick Gansterer <paroga@webkit.org>
3569 [CMake] Do not use JAVASCRIPTCORE_DIR in add_custom_command() of JavaScriptcore project
3570 https://bugs.webkit.org/show_bug.cgi?id=114265
3572 Reviewed by Brent Fulgham.
3574 * Source/cmake/WebKitMacros.cmake: Removed macro GENERATE_HASH_LUT.
3576 2013-04-16 Andy Estes <aestes@apple.com>
3578 Changed the default debugger from GDB to LLDB for the 'All Source' scheme in WebKit.xcworkspace.
3580 Rubber-stamped by Dan Bernstein.
3582 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
3584 2013-04-16 Manuel Rego Casasnovas <rego@igalia.com>
3586 [EFL] Bump libsoup dependency to 2.42.0
3587 https://bugs.webkit.org/show_bug.cgi?id=113927
3589 Reviewed by Gyuyoung Kim.
3591 Update libsoup required version to v2.42.0 and GLib to v2.36.0 as
3592 required by libsoup for EFL port.
3594 * Source/cmake/OptionsEfl.cmake:
3596 2013-04-15 Patrick Gansterer <paroga@webkit.org>
3598 [CMake] Add WTF_USE_*_UNICODE variables
3599 https://bugs.webkit.org/show_bug.cgi?id=114556
3601 Reviewed by Brent Fulgham.
3603 WTF_USE_ICU_UNICODE and WTF_USE_WCHAR_UNICODE are used to
3604 reduce duplication in the platform specific CMake files.
3606 * Source/cmake/OptionsBlackBerry.cmake:
3607 * Source/cmake/OptionsEfl.cmake:
3608 * Source/cmake/OptionsWinCE.cmake:
3610 2013-04-15 Martin Robinson <mrobinson@igalia.com>
3612 [GTK] REGRESSION(r147499): HTTP auth dialog doesn't remember passwords anymore
3613 https://bugs.webkit.org/show_bug.cgi?id=114613
3615 Reviewed by Carlos Garcia Campos.
3617 * Source/autotools/SetupAutoconfHeader.m4: Correct definition of ENABLE_CREDENTIAL_STORAGE
3618 so that the ENABLE(CREDENTIAL_STORAGE) macro work properly.
3620 2013-04-12 Martin Robinson <mrobinson@igalia.com>
3622 [GTK] Lower the pango dependency
3623 https://bugs.webkit.org/show_bug.cgi?id=114520
3625 Reviewed by Carlos Garcia Campos.
3627 * Source/autotools/Versions.m4: Only depend on Pango 1.30.0 instead of
3628 Pango 1.32.0. 1.32.0 isn't strictly necessary and the version of GTK+ that
3629 we depend on (3.6.0) depends on 1.30.0.
3631 2013-04-12 Jer Noble <jer.noble@apple.com>
3633 TimeRanges::nearest() returns incorrect results.
3634 https://bugs.webkit.org/show_bug.cgi?id=114483
3636 Reviewed by Eric Carlson.
3638 Add symbols needed by WebCoreTestSupport to exports list.
3640 * Source/autotools/symbols.filter:
3642 2013-04-12 Commit Queue <rniwa@webkit.org>
3644 Unreviewed, rolling out r148262.
3645 http://trac.webkit.org/changeset/148262
3646 https://bugs.webkit.org/show_bug.cgi?id=114493
3648 Cairo dep should now build, rolling r148247 back in (Requested
3649 by zdobersek on #webkit).
3651 * Source/autotools/FindDependencies.m4:
3652 * Source/autotools/PrintBuildConfiguration.m4:
3653 * Source/autotools/SetupWebKitFeatures.m4:
3655 2013-04-11 Commit Queue <rniwa@webkit.org>
3657 Unreviewed, rolling out r148247.
3658 http://trac.webkit.org/changeset/148247
3659 https://bugs.webkit.org/show_bug.cgi?id=114490
3661 Cairo dep fails to build on builders due to missing EGL
3662 headers (Requested by zdobersek on #webkit).
3664 * Source/autotools/FindDependencies.m4:
3665 * Source/autotools/PrintBuildConfiguration.m4:
3666 * Source/autotools/SetupWebKitFeatures.m4:
3668 2013-04-11 Paweł Forysiuk <tuxator@o2.pl>
3670 [GTK] Webkit fails to build with MinGW compiler after changeset 146468
3671 https://bugs.webkit.org/show_bug.cgi?id=114473
3673 Reviewed by Martin Robinson.
3675 * Source/autotools/CheckSystemAndBasicDependencies.m4: Fix typo.
3677 2013-04-11 Martin Robinson <mrobinson@igalia.com>
3679 [GTK] Add accelerated 2D canvas support using cairo-gl
3680 https://bugs.webkit.org/show_bug.cgi?id=104672
3682 Reviewed by Alejandro G. Castro.
3684 Detect that we can activate accelerated canvas when CairoGL is present and
3685 TextureMapperGL is enabled.
3687 * Source/autotools/FindDependencies.m4: Look for CairoGL.
3688 * Source/autotools/PrintBuildConfiguration.m4: Print the status of accelerated canvas activation.
3689 * Source/autotools/SetupWebKitFeatures.m4: Set the feature.
3691 2013-04-11 Zan Dobersek <zdobersek@igalia.com>
3695 * Source/autotools/symbols.filter: Stop exporting redundant symbols.
3697 2013-04-11 Rune Lillesveen <rune@opera.com>
3699 Incorrect evaluation of resolution media queries
3700 https://bugs.webkit.org/show_bug.cgi?id=114029
3702 Reviewed by Kenneth Rohde Christiansen.
3704 Removed setResolutionOverride from exports.
3706 * Source/autotools/symbols.filter:
3708 2013-04-10 Anton Obzhirov <a.obzhirov@samsung.com>
3710 [GTK] Add support for Page Visibility
3711 https://bugs.webkit.org/show_bug.cgi?id=97324
3713 Reviewed by Sam Weinig.
3715 Page Visibility has been enabled for GTK port.
3716 New GTK unittest has been added.
3718 * Source/autotools/SetupWebKitFeatures.m4:
3720 2013-04-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
3722 [EFL] Declare TEST_THEME_DIR in a single place.
3723 https://bugs.webkit.org/show_bug.cgi?id=114285
3725 Reviewed by Anders Carlsson.
3727 Instead of adding the `THEME_DIR' preprocessor variable in many
3728 different CMakeList.txt files in the tree, declare it in
3729 OptionsEfl.cmake so that we avoid needlessly duplicating code around.
3731 While here, rename it to `TEST_THEME_DIR', which is the name used our
3732 WebKit2 infrastructure, to better reflect the purpose of this value.
3734 * Source/cmake/OptionsEfl.cmake: Add the TEST_THEME_DIR preprocessor
3737 2013-04-09 ChangSeok Oh <changseok.oh@collabora.com>
3739 [GTK][AC] upversion of clutter and its dependecy
3740 https://bugs.webkit.org/show_bug.cgi?id=114016
3742 Reviewed by Gustavo Noronha Silva.
3744 Upversion of clutter to 1.14, cogl to 1.14 and clutter-gtk to 1.4.4.
3746 * Source/autotools/Versions.m4:
3748 2013-04-09 Thiago Marcos P. Santos <thiago.santos@intel.com>
3750 [WK2] Drop WebProcess capabilities on Linux using seccomp filters
3751 https://bugs.webkit.org/show_bug.cgi?id=89875
3753 Reviewed by Maciej Stachowiak.
3755 Added the bits to EFL/CMake buildsystem to find the libseccomp
3758 * Source/cmake/FindLibSeccomp.cmake: Added.
3759 * Source/cmake/OptionsEfl.cmake:
3760 * Source/cmake/WebKitFeatures.cmake:
3761 * Source/cmakeconfig.h.cmake:
3763 2013-04-09 Carlos Garcia Campos <cgarcia@igalia.com>
3765 Unreviewed. Fix GTK+ 32 bit build.
3767 * Source/autotools/symbols.filter: Add some symbols that are
3768 mangled differently in 32 bits due to size_t.
3770 2013-04-09 Patrick Gansterer <paroga@webkit.org>
3772 Do not set CMAKE_BUILD_TYPE if it is not defined
3773 https://bugs.webkit.org/show_bug.cgi?id=114243
3775 Reviewed by Geoffrey Garen.
3777 Setting the CMAKE_BUILD_TYPE causes some problem with Visual Studio.
3778 Adopt the current usage of the variable to better CMake style.
3781 * Source/cmake/OptionsCommon.cmake:
3782 * Source/cmake/OptionsEfl.cmake:
3784 2013-03-31 Martin Robinson <mrobinson@igalia.com>
3786 Bug 110293 uses read -d which is a non-portable bashism
3787 https://bugs.webkit.org/show_bug.cgi?id=113349
3789 Reviewed by Gustavo Noronha Silva.
3791 * Source/autotools/SetupWebKitFeatures.m4: Pass the default feature set to the
3792 feature script in a more portable way.
3794 2013-04-08 Jeff Rogers <jrogers@rim.com>
3796 [BlackBerry] Update BlackBerry JavaScript API
3797 https://bugs.webkit.org/show_bug.cgi?id=114065
3799 Reviewed by Rob Buis.
3802 Export JSC symbols in BlackBerry build.
3804 * Source/cmake/OptionsBlackBerry.cmake:
3806 2013-04-08 Martin Robinson <mrobinson@igalia.com>
3808 [GTK] Configure should verify ICU is installed on mingw
3809 https://bugs.webkit.org/show_bug.cgi?id=113645
3811 Reviewed by Gustavo Noronha Silva.
3813 * Source/autotools/FindDependencies.m4: When falling back to hard-coded compiler flags
3814 for ICU and mingw, check that headers do exist on the system and error out otherwise.
3816 2013-04-08 Carlos Garcia Campos <cgarcia@igalia.com>
3818 [GTK] Build Platform as a separate static library
3819 https://bugs.webkit.org/show_bug.cgi?id=114164
3821 Reviewed by Martin Robinson.
3823 * GNUmakefile.am: Add webkit2platform_sources definition.
3825 2013-04-08 Zan Dobersek <zdobersek@igalia.com>
3827 Unreviewed GTK build fix.
3829 * Source/autotools/symbols.filter: Exporting a bunch of symbols.
3831 2013-04-07 Vivek Galatage <vivek.vg@samsung.com>
3833 Modify .gitignore file to remove entries for chromium generated files
3834 https://bugs.webkit.org/show_bug.cgi?id=114141
3836 Reviewed by Gyuyoung Kim.
3840 2013-04-07 Patrick Gansterer <paroga@webkit.org>
3842 Remove references to Skia and V8 from CMake files
3843 https://bugs.webkit.org/show_bug.cgi?id=114130
3845 Reviewed by Geoffrey Garen.
3847 * Source/cmake/OptionsBlackBerry.cmake:
3848 * Source/cmake/WebKitPackaging.cmake:
3850 2013-04-07 David Kilzer <ddkilzer@apple.com>
3852 Remove the rest of SVG_DOM_OBJC_BINDINGS
3853 <http://webkit.org/b/114112>
3855 Reviewed by Geoffrey Garen.
3857 * Source/autotools/SetupWebKitFeatures.m4:
3858 * Source/cmake/WebKitFeatures.cmake:
3859 * Source/cmakeconfig.h.cmake:
3860 - Remove references to ENABLE_SVG_DOM_OBJC_BINDINGS.
3862 2013-04-05 Ed Bartosh <bartosh@gmail.com>
3864 [EFL] --no-tiled-backing-store build fails because of not used #if USE(ACCELERATED_COMPOSITING)
3865 https://bugs.webkit.org/show_bug.cgi?id=113627
3867 Reviewed by Simon Fraser.
3869 * Source/cmake/OptionsEfl.cmake: Disabled 3D_GRAPHICS and WEB_GL when accelerated compositing is on
3871 2013-04-05 Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
3873 [EFL] Enable indexed database
3874 https://bugs.webkit.org/show_bug.cgi?id=107248
3876 Reviewed by Alexis Menard.
3878 * Source/cmake/OptionsEfl.cmake:
3880 2013-04-05 Benjamin Poulain <benjamin@webkit.org>
3882 Fix GTK+ for real after r147712
3884 Reviewed by Ryosuke Niwa.
3887 * Source/Platform: Added.
3888 * Source/Platform/GNUmakefile.am: Added.
3890 2013-04-05 Benjamin Poulain <benjamin@webkit.org>
3892 Fix GTK+ build after r147712
3896 * GNUmakefile.am: remove the reference to
3897 Source/Platform/GNUmakefile.am. The file has been removed.
3899 2013-04-05 Benjamin Poulain <bpoulain@apple.com>
3901 Remove WTFURL from WebKit
3902 https://bugs.webkit.org/show_bug.cgi?id=113994
3904 Reviewed by Ryosuke Niwa.
3906 * Source/cmake/WebKitFeatures.cmake:
3907 * Source/cmakeconfig.h.cmake:
3909 2013-04-04 Ryosuke Niwa <rniwa@webkit.org>
3911 Remove the top level gyp directory and Platform/chromium
3912 https://bugs.webkit.org/show_bug.cgi?id=113999
3914 Reviewed by Benjamin Poulain.
3916 * Source/Platform: Removed.
3917 * Source/gyp: Removed.
3919 2013-04-04 Geoffrey Garen <ggaren@apple.com>
3921 Nixed the defunct chromium folder from ManualTests
3922 https://bugs.webkit.org/show_bug.cgi?id=113995
3924 Reviewed by Benjamin Poulain.
3926 * ManualTests/chromium: Removed.
3927 * ManualTests/chromium/autofill-popup-shiftupdown.hml: Removed.
3928 * ManualTests/chromium/drag-image-accounts-for-device-scale.html: Removed.
3929 * ManualTests/chromium/modifiers-during-drag-and-drop.html: Removed.
3930 * ManualTests/chromium/no-autofill-on-readonly.html: Removed.
3931 * ManualTests/chromium/onchange-reload-popup.html: Removed.
3932 * ManualTests/chromium/popup-menu-crash.html: Removed.
3933 * ManualTests/chromium/select-close-popup-value-change.html: Removed.
3934 * ManualTests/chromium/suggestions-popup-font-change.html: Removed.
3936 2013-04-04 Xabier Rodriguez Calvar <calvaris@igalia.com>
3938 [GStreamer] Virtual modifier for MediaPlayer::simulateAudioInterruption must go
3939 https://bugs.webkit.org/show_bug.cgi?id=113851
3941 Reviewed by Eric Carlson.
3943 * Source/autotools/symbols.filter: Added
3944 _ZN7WebCore11MediaPlayer25simulateAudioInterruptionEv symbol.
3946 2013-04-03 Carlos Garcia Campos <cgarcia@igalia.com>
3948 [GTK] Bump required versions of some dependencies
3949 https://bugs.webkit.org/show_bug.cgi?id=113282
3951 Reviewed by Martin Robinson.
3953 This patch updates the following dependencies:
3955 - libsoup 2.42.0: is the current stable release.
3957 - glib 2.36.0: libsoup 2.42 requires 2.35.0, but we don't want to
3958 depend on unstable versions and 2.36 is the next stable version
3961 - gtk+ 3.6.0: this is the previous stable release. We don't
3962 currently have any code using newer API, so we will be able to
3963 remove all the #ifdefed code.
3965 - at-spi2 2.5.3: is the version required by gtk+ 3.6.
3967 - GObject introspection 1.32.0: is the version required by gtk+ 3.6.
3969 - Pango 1.32.0: it's the current stable version and the first one
3970 depending on Harfbuzz.
3972 - Fontconfig 2.5: required by pango 1.32.0 when using Harfbuzz.
3974 - gtk+ 2.24.10: it allows us to remove a lot of deprecated code
3977 * Source/autotools/Versions.m4:
3979 2013-04-02 Martin Robinson <mrobinson@igalia.com>
3981 [GTK] Make libsecret optional
3982 https://bugs.webkit.org/show_bug.cgi?id=113821
3984 Reviewed by Gustavo Noronha Silva.
3986 Add a configuration option to disable credential storage and thus remove
3987 the libsecret dependency. This should make it possible to build WebKit 2.x
3990 * Source/autotools/FindDependencies.m4: Only look for libsecret if credential storage is active.
3991 * Source/autotools/PrintBuildConfiguration.m4: Print whether or not credential storage is active.
3992 * Source/autotools/ReadCommandLineArguments.m4: Added an option to control credential storage.
3993 * Source/autotools/SetupAutoconfHeader.m4: Expose credential storage setting to code.
3995 2013-04-02 Sheriff Bot <webkit.review.bot@gmail.com>
3997 Unreviewed, rolling out r147401.
3998 http://trac.webkit.org/changeset/147401
3999 https://bugs.webkit.org/show_bug.cgi?id=113767
4001 The patch makes it extremely hard to set up the dependencies
4002 properly on the GTK builders (Requested by zdobersek on
4005 * Source/autotools/Versions.m4:
4007 2013-04-02 Carlos Garcia Campos <cgarcia@igalia.com>
4009 [GTK] Bump required versions of some dependencies
4010 https://bugs.webkit.org/show_bug.cgi?id=113282
4012 Reviewed by Martin Robinson.
4014 This patch updates the following dependencies:
4016 - libsoup 2.42.0: is the current stable release.
4018 - glib 2.36.0: libsoup 2.42 requires 2.35.0, but we don't want to
4019 depend on unstable versions and 2.36 is the next stable version
4022 - gtk+ 3.6.0: this is the previous stable release. We don't
4023 currently have any code using newer API, so we will be able to
4024 remove all the #ifdefed code.
4026 - at-spi2 2.5.3: is the version required by gtk+ 3.6.
4028 - GObject introspection 1.32.0: is the version required by gtk+ 3.6.
4030 - Pango 1.32.0: it's the current stable version and the first one
4031 depending on Harfbuzz.
4033 - Fontconfig 2.5: required by pango 1.32.0 when using Harfbuzz.
4035 - gtk+ 2.24.10: it allows us to remove a lot of deprecated code
4038 * Source/autotools/Versions.m4:
4040 2013-04-02 Carlos Garcia Campos <cgarcia@igalia.com>
4042 [EFL][CMAKE] Move MOZ_X11 definition from OptionsCommon to OptionsEfl
4043 https://bugs.webkit.org/show_bug.cgi?id=113685
4045 Reviewed by Martin Robinson.
4047 MOZ_X11 is added unconditionally in OptionsCommon for UNIX
4048 platforms, but not all UNIX platforms use X11 for plugins,
4049 BlackBerry doesn't. The only port using cmake that uses X11 is EFL
4050 and it already has checks for X11, so we can just move the
4051 definition to OptionsEfl.
4053 * Source/cmake/OptionsCommon.cmake:
4054 * Source/cmake/OptionsEfl.cmake:
4056 2013-04-01 Jinwoo Song <jinwoo7.song@samsung.com>
4058 [EFL] Enable user-select:all for EFL port
4059 https://bugs.webkit.org/show_bug.cgi?id=113494
4061 Reviewed by Gyuyoung Kim.
4063 Add a feature flag for user-select:all and enable it for EFL port.
4065 * Source/cmake/OptionsEfl.cmake:
4066 * Source/cmake/WebKitFeatures.cmake:
4067 * Source/cmakeconfig.h.cmake:
4069 2013-03-29 Charles Wei <charles.wei@torchmobile.com.cn>
4071 [BlackBerry] Cleanup the CONTEXT_MENUS in BlackBerry porting
4072 https://bugs.webkit.org/show_bug.cgi?id=113562
4074 Reviewed by George Staikos.
4075 Internally reviewed by Mike Fenton and Gen Mak.
4077 * Source/cmake/OptionsBlackBerry.cmake:
4078 * Source/cmake/WebKitFeatures.cmake:
4079 * Source/cmakeconfig.h.cmake:
4081 2013-03-28 Zan Dobersek <zdobersek@igalia.com>
4083 [GTK] Build GTK-specific, non-layer-violating source code into WebCore-independent libPlatformGtk.la
4084 https://bugs.webkit.org/show_bug.cgi?id=112546
4086 Reviewed by Martin Robinson.
4088 * GNUmakefile.am: Define the new platform_webcore_cppflags.
4090 2013-03-28 Zan Dobersek <zdobersek@igalia.com>
4092 Unreviewed GTK build fix after r147039.
4094 * Source/autotools/symbols.filter: Export the missing symbols.
4096 2013-03-27 Patrick Gansterer <paroga@webkit.org>
4098 Set WTF_ARM_ARCH_VERSION to correct value when used with MSVC
4099 https://bugs.webkit.org/show_bug.cgi?id=113436
4101 Reviewed by Benjamin Poulain.
4103 * Source/cmake/OptionsWinCE.cmake: CPU(ARM_TRADITIONAL) is now set correctly by Platform.h.
4105 2013-03-27 Timothy Hatcher <timothy@apple.com>
4107 Add support for dock-to-right of the Web Inspector in the Mac port.
4109 Unfortunately this requires Safari changes, so it is disabled in the nightly builds.
4111 https://webkit.org/b/113341
4112 rdar://problem/10368152
4114 Reviewed by Joseph Pecoraro.
4116 * Source/autotools/symbols.filter:
4118 2013-03-27 Sheriff Bot <webkit.review.bot@gmail.com>
4120 Unreviewed, rolling out r146864.
4121 http://trac.webkit.org/changeset/146864
4122 https://bugs.webkit.org/show_bug.cgi?id=113391
4124 causes crashes on Wk2 EFL release bot (Requested by drott on
4127 * Source/cmake/OptionsEfl.cmake:
4129 2013-03-26 Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
4131 [EFL] Enable IndexedDB by default
4132 https://bugs.webkit.org/show_bug.cgi?id=107248
4134 Reviewed by Laszlo Gombos.
4136 * Source/cmake/OptionsEfl.cmake:
4137 Enable IndexedDB by default on EFL.
4139 2013-03-25 Kent Tamura <tkent@chromium.org>
4141 Rename ENABLE_INPUT_TYPE_DATETIME
4142 https://bugs.webkit.org/show_bug.cgi?id=113254
4144 Reviewed by Kentaro Hara.
4146 Rename ENABLE_INPUT_TYPE_DATETIME to ENABLE_INPUT_TYPE_DATETIME_INCOMPLETE.
4147 Actually I'd like to remove the code, but we shouldn't remove it yet
4148 because we shipped products with it on some platforms.
4150 * Source/autotools/SetupWebKitFeatures.m4:
4151 * Source/cmake/WebKitFeatures.cmake:
4152 * Source/cmakeconfig.h.cmake:
4154 2013-03-25 Daniel Cheng <dcheng@chromium.org>
4156 Don't allow drags to start after a mouse press that creates a context menu
4157 https://bugs.webkit.org/show_bug.cgi?id=112079
4159 Reviewed by Tony Chang.
4161 * ManualTests/context-menu-during-drag-selection.html: Added.
4163 2013-03-22 Yuki Sekiguchi <yuki.sekiguchi@access-company.com>
4165 Cannot run All Source (target WebProcess) on Xcode.
4166 https://bugs.webkit.org/show_bug.cgi?id=111042
4168 Reviewed by Alexey Proskuryakov.
4170 WebProcessShim is renamed by r139066.
4171 However, WebProcessShim is not renamed to SecItemShim in WebKit.xcworkspace.
4172 This make WebProcess.app load WebProcessShim.dylib, and it cause dyld loading error.
4174 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Renamed WebProcessShim to SecItemShim.
4176 2013-03-21 Zan Dobersek <zdobersek@igalia.com>
4178 [GTK] Move libLevelDB.la setup into a separate GNUmakefile.am
4179 https://bugs.webkit.org/show_bug.cgi?id=112947
4181 Reviewed by Martin Robinson.
4183 * GNUmakefile.am: Include the new GNUmakefile.am, located under Source/ThirdParty/leveldb.
4185 2013-03-21 Martin Robinson <mrobinson@igalia.com>
4187 Source/ThirdParty/leveldb/db/builder.cc does not build on systems without <endian.h>
4188 https://bugs.webkit.org/show_bug.cgi?id=111817
4190 Reviewed by Gustavo Noronha Silva.
4192 Improve processing of the autoconf host variable. Setup up the wiring to detect
4193 whether or not we are compiling for Darwin.
4195 * Source/autotools/CheckSystemAndBasicDependencies.m4: Improve host detection.
4196 * Source/autotools/SetupAutomake.m4: Tell automake if we are compiling for Darwin or not.
4198 2013-03-20 Michael Pruett <michael@68k.org>
4200 [JSC] Implement EnforceRange IDL attribute for integer conversions
4201 https://bugs.webkit.org/show_bug.cgi?id=112506
4203 Reviewed by Kentaro Hara.
4205 * Source/autotools/symbols.filter:
4207 2013-03-20 Zan Dobersek <zdobersek@igalia.com>
4209 [GTK] Build ANGLE sources into a separate library from libWebCore.la
4210 https://bugs.webkit.org/show_bug.cgi?id=112778
4212 Reviewed by Martin Robinson.
4214 * GNUmakefile.am: Include the GNUmakefile.am covering the libANGLE.la library.
4216 2013-03-20 Jocelyn Turcotte <jocelyn.turcotte@digia.com>
4218 [Qt] Define MODULE_VERSION
4219 https://bugs.webkit.org/show_bug.cgi?id=112808
4221 Reviewed by Allan Sandfeld Jensen.
4223 Upstream http://codereview.qt-project.org/49052
4224 Use 5.2.0 as this is the next release that will be branched from trunk.
4228 2013-03-20 Rouslan Solomakhin <rouslan@chromium.org>
4230 Copy-paste should not spellcheck when continuous spellcheck is turned off
4231 https://bugs.webkit.org/show_bug.cgi?id=112464
4233 Reviewed by Ryosuke Niwa.
4235 * Source/autotools/symbols.filter: Export WebCore::Editor::isContinuousSpellCheckingEnabled() and WebCore::Editor::toggleContinuousSpellChecking() for use by internals.
4237 2013-03-20 JungJik Lee <jungjik.lee@samsung.com>
4239 [EFL] Disable REQUEST_ANIMATION_FRAME_TIMER to render a new animation frame.
4240 https://bugs.webkit.org/show_bug.cgi?id=112114
4242 Reviewed by Kenneth Rohde Christiansen.
4244 Add a manual test to check the running of scripted transition animation.
4246 * ManualTests/animation/transition-on-and-offscreen-animation.html: Added.
4248 2013-03-19 David Rosca <nowrep@gmail.com>
4250 [Qt] QStyle: Set State_Enabled by default when painting style widgets.
4251 https://bugs.webkit.org/show_bug.cgi?id=112688
4253 Reviewed by Jocelyn Turcotte.
4255 All Qt style widgets were painted with a disabled state, even when
4256 they actually were enabled.
4257 This change fixes it by setting State_Enabled as a default state,
4258 which is then correctly removed when element is disabled.
4260 * Source/WebCore/platform/qt/RenderThemeQStyle.cpp:
4262 2013-03-17 Gustavo Noronha Silva <gns@gnome.org>
4264 [GTK] Exports leveldb symbols
4265 https://bugs.webkit.org/show_bug.cgi?id=112526
4267 Reviewed by Carlos Garcia Campos.
4269 * Source/autotools/symbols.filter: make leveldb symbols local.
4271 2013-03-15 Jae Hyun Park <jae.park@company100.net>
4273 [GTK] acceleration_backend_description does not concatenate "(gles2"
4274 https://bugs.webkit.org/show_bug.cgi?id=112405
4276 Reviewed by Martin Robinson.
4278 In FindDependencies.m4, acceleration_backend_description string does not
4279 concatenate if there is a space between the operator and the operand.
4281 * Source/autotools/FindDependencies.m4:
4283 2013-03-15 Allan Sandfeld Jensen <allan.jensen@digia.com>
4285 [Qt] Build error with building with Qt 5.1
4286 https://bugs.webkit.org/show_bug.cgi?id=112435
4288 Reviewed by Noam Rosenthal.
4290 QAccessibleWidget has moved to private.
4292 * Source/widgetsapi.pri:
4294 2013-03-14 Tobias Mueller <tobiasmue@gnome.org>
4296 Build: Remove XSLT option and depend hard on XSLT.
4297 You will now not be able to give --disable-xslt or --enable-xslt
4298 because it is not optional anymore.
4299 https://bugs.webkit.org/show_bug.cgi?id=112368
4301 Reviewed by Martin Robinson.
4303 * Source/autotools/FindDependencies.m4:
4304 Always check for libxslt
4306 * Source/autotools/PrintBuildConfiguration.m4:
4307 Removed printing out the value of XSLT
4309 * Source/autotools/ReadCommandLineArguments.m4:
4310 Removed reading XSLT options
4312 2013-03-14 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
4314 [EFL] Use CROSS_PLATFORM_CONTEXT_MENU
4315 https://bugs.webkit.org/show_bug.cgi?id=111877
4317 Reviewed by Caio Marcelo de Oliveira Filho.
4319 * Source/cmake/OptionsEfl.cmake: add -DWTF_USE_CROSS_PLATFORM_CONTEXT_MENUS=1
4321 2013-03-14 Simon Hausmann <simon.hausmann@digia.com>
4323 [Qt] Improve the handling of mock geolocation, device orientation and motion clients
4325 Reviewed by Tor Arne Vestbø.
4327 The mock versions of these web facing features should be instantiated when
4328 running in DumpRenderTree only. In order for them to work, no extra Qt modules
4329 such as QtLocation are actually needed.
4331 This patch decouples enabling device orientation/motion and geolocation from
4332 the underlying Qt modules and makes them available in developer builds
4333 (!production_build) and backed by mock backends when running in drt.
4335 So if the Qt 5 modules are available, they'll be used (unless drtRun). For
4336 developers the web facing features are always enabled (although requests will
4337 time out) and the mock backends are enabled inside DRT, allowing for the layout
4338 tests to run with less dependencies.
4340 In addition this also enables the mock device motion client, which was
4341 previously never instantiated.
4343 * Source/widgetsapi.pri:
4345 2013-03-13 Ryosuke Niwa <rniwa@webkit.org>
4347 Threaded HTML Parser is missing feature define flags in all but Chromium port's build files
4348 https://bugs.webkit.org/show_bug.cgi?id=112277
4350 Reviewed by Adam Barth.
4352 * Source/autotools/SetupWebKitFeatures.m4:
4353 * Source/cmake/WebKitFeatures.cmake:
4354 * Source/cmakeconfig.h.cmake:
4356 2013-03-13 Nate Chapin <japhet@chromium.org>
4358 Expose symbols for internals
4359 https://bugs.webkit.org/show_bug.cgi?id=112194
4361 Reviewed by Alexey Proskuryakov.
4363 * Source/autotools/symbols.filter:
4365 2013-03-12 Zan Dobersek <zdobersek@igalia.com>
4367 [GTK] 'unrecognized command line option "-Wno-c++11-extensions"' warning reported when using gcc
4368 https://bugs.webkit.org/show_bug.cgi?id=111936
4370 Reviewed by Martin Robinson.
4372 * Source/autotools/SetupCompilerFlags.m4: Only use the -Wno-c++11-extensions warning when building
4373 with Clang as GCC does not support the warning just yet. Also enhance the comment about using libstdc++
4374 as the standard C++ library when compiling with Clang.
4376 2013-03-12 Zan Dobersek <zdobersek@igalia.com>
4378 [GTK] Set up the libPlatformGtk.la library
4379 https://bugs.webkit.org/show_bug.cgi?id=111738
4381 Reviewed by Martin Robinson.
4383 * GNUmakefile.am: Define the two variables that will hold sources list and cppflags as required for the new library.
4384 Include the new GNUmakefile.am that's now available under Source/Platform.
4386 2013-03-11 Tobias Mueller <tobiasmue@gnome.org>
4388 [Autotools] Set ENABLE_GTK_DOC to false if gtk-doc is not installed
4389 https://bugs.webkit.org/show_bug.cgi?id=111980
4391 Reviewed by Martin Robinson.
4393 WebKit did not configure if gtk-doc-am was not installed with the error:
4394 Tools/GNUmakefile.am:419: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
4396 * Source/autotools/FindDependencies.m4:
4398 2013-03-11 Claudio Saavedra <csaavedra@igalia.com>
4401 https://bugs.webkit.org/show_bug.cgi?id=112055
4403 Reviewed by Martin Robinson.
4405 * Source/autotools/Versions.m4: Bump to 2.1.0
4407 2013-03-11 Jeff Rogers <jrogers@rim.com>
4409 [BlackBerry] Disable MathML support
4410 https://bugs.webkit.org/show_bug.cgi?id=111929
4412 Reviewed by Rob Buis.
4414 * Source/cmake/OptionsBlackBerry.cmake:
4416 2013-03-09 Martin Robinson <mrobinson@igalia.com>
4418 [GTK] Versions.m4 is missing some key dependencies version definitions
4419 https://bugs.webkit.org/show_bug.cgi?id=111903
4421 Reviewed by Carlos Garcia Campos.
4423 * Source/autotools/Versions.m4: Add missing required version
4426 2013-03-08 Dean Jackson <dino@apple.com>
4428 Don't snapshot Java plugins
4429 https://bugs.webkit.org/show_bug.cgi?id=111899
4431 Reviewed by Tim Horton.
4433 Export MIMETypeRegistry::isJavaAppletMIMEType symbol.
4435 * Source/autotools/symbols.filter:
4437 2013-03-08 Chandra Shekar Vallala <brk376@motorola.com>
4439 [chromium] Keydown event for 'shift+alt' returns win keycode instead of 'alt'
4440 https://bugs.webkit.org/show_bug.cgi?id=111112
4442 Reviewed by Tony Chang.
4444 Return windows keycode of Alt incase of GDK_META_L, GDK_META_R.
4446 Try press Shift then alt key. The test passes if the shiftKey, altKey values
4447 of JSKeyEvent are true and keycode/which is 18.
4449 * ManualTests/shift-alt-key-event.html: Added.
4451 2013-03-08 Zan Dobersek <zdobersek@igalia.com>
4453 [Autotools] Remove definitions of unnecessary Automake conditionals
4454 https://bugs.webkit.org/show_bug.cgi?id=111830
4456 Reviewed by Philippe Normand.
4458 The following Automake conditionals are not used anywhere and should have their
4459 definitions in SetupAutomake.m4 removed:
4460 ENABLE_GAMEPAD, ENABLE_XSLT, ENABLE_GEOLOCATION, ENABLE_SVG_FONTS,
4461 ENABLE_OPCODE_STATS, ENABLE_CSS_FILTERS, ENABLE_CSS_SHADERS.
4463 * Source/autotools/SetupAutomake.m4:
4465 2013-03-08 Zan Dobersek <zdobersek@igalia.com>
4467 [GTK] Remove media stream support from the configuration options
4468 https://bugs.webkit.org/show_bug.cgi?id=111813
4470 Reviewed by Philippe Normand.
4472 Remove the media-stream configuration flag. The feature is incomplete and
4473 thus unsupported, so it really shouldn't be possible to enable it.
4475 * Source/autotools/PrintBuildConfiguration.m4:
4476 * Source/autotools/ReadCommandLineArguments.m4:
4477 * Source/autotools/SetupAutomake.m4:
4478 * Source/autotools/SetupWebKitFeatures.m4:
4480 2013-03-07 Keishi Hattori <keishi@webkit.org>
4482 Update calendar picker UI
4483 https://bugs.webkit.org/show_bug.cgi?id=109439
4485 Reviewed by Kent Tamura.
4487 * ManualTests/forms/calendar-picker.html: New test file with more options.
4488 * ManualTests/forms/date-suggestion-picker.html: Copied from ManualTests/forms/calendar-picker.html. Old one kept for dat/time suggestion picker testing.
4490 2013-03-07 Christophe Dumez <ch.dumez@sisa.samsung.com>
4492 [EFL] Bump libsoup dependency to 2.40.3 to fix regressions
4493 https://bugs.webkit.org/show_bug.cgi?id=111756
4495 Reviewed by Kenneth Rohde Christiansen.
4497 Update libsoup required version to v2.40.3 for EFL port.
4499 * Source/cmake/OptionsEfl.cmake:
4501 2013-03-07 Zan Dobersek <zdobersek@igalia.com>
4503 [GTK] Limit the supported compilers to GCC >= 4.7 and Clang >= 3.0
4504 https://bugs.webkit.org/show_bug.cgi?id=109932
4506 Reviewed by Martin Robinson.
4508 * Source/autotools/CheckSystemAndBasicDependencies.m4: Strictly check for one of the two compilers.
4509 * Source/autotools/SetupCompilerFlags.m4: Set up C++11-specific compiler flags. Force the C99 standard for the C code.
4510 Use the -Qunused-arguments flag when using Clang, it reduces irrelevant errors when using ccache.
4512 2013-03-05 Gustavo Noronha Silva <gns@gnome.org>
4514 [GTK] Enable translations for WebKit2
4515 https://bugs.webkit.org/show_bug.cgi?id=111398
4517 Reviewed by Martin Robinson.
4519 * GNUmakefile.am: adjust path for i18n GNUmakefile.am.
4520 * configure.ac: generate the i18n makefile unconditionally, the translations are
4521 used by both WebKitGTK+ and WebKit2GTK+.
4523 2013-03-06 Adam Klein <adamk@chromium.org>
4525 [V8] Use implicit references instead of object groups to keep registered MutationObservers alive
4526 https://bugs.webkit.org/show_bug.cgi?id=111382
4528 Reviewed by Adam Barth.
4530 * ManualTests/mutation-observer-leaks-nodes.html: Added.
4532 2013-03-06 Gustavo Noronha Silva <gns@gnome.org>
4534 Build fix. Fixes problems building code that uses deprecated functions from GTK+ 2,
4535 such as RenderThemeGtk2.cpp, in debug mode. RenderThemeGtk2.cpp tries to allow usage
4536 of deprecated functions by undefining GTK_DISABLE_DEPRECATED, but it ended up being
4537 redefined because autotoolsconfig.h was included again by headers that came after