1 2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
3 [EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
4 https://bugs.webkit.org/show_bug.cgi?id=135560
6 Reviewed by Gyuyoung Kim.
8 * Source/cmake/OptionsEfl.cmake: Removed TILED_BACKING_STORE guard.
10 2014-08-28 Brian J. Burg <burg@cs.washington.edu>
12 WebInspectorUI.framework is not built for the "All Source" Xcode scheme
13 https://bugs.webkit.org/show_bug.cgi?id=136343
15 Reviewed by David Kilzer.
17 The "build" and "run" actions in Xcode should copy over the latest Inspector resources.
19 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
20 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
22 2014-08-27 Krzysztof Czech <k.czech@samsung.com>
24 [EFL] Share fast/speechsynthesis/ with other ports
25 https://bugs.webkit.org/show_bug.cgi?id=136224
27 Reviewed by Chris Fleizach.
29 Enable WebSpeech for EFL.
31 * Source/cmake/OptionsEfl.cmake:
33 2014-08-26 Krzysztof Czech <k.czech@samsung.com>
35 [EFL] Utilize espeak as a synthesizer back-end for WebSpeech
36 https://bugs.webkit.org/show_bug.cgi?id=136127
38 Reviewed by Gyuyoung Kim.
40 Add build support for espeak.
42 * Source/cmake/FindEspeak.cmake: Added.
43 * Source/cmake/OptionsEfl.cmake: Add Espeak dependency.
45 2014-08-26 Ryuan Choi <ryuan.choi@samsung.com>
47 [EFL] Build break using clang
48 https://bugs.webkit.org/show_bug.cgi?id=136245
50 Reviewed by Gyuyoung Kim.
52 * Source/cmake/OptionsEfl.cmake:
53 Disable ENABLE_WERROR when compiler is Clang as workaround because there are too many warnings.
54 Some warnings are from system libraries.
56 2014-08-25 Alberto Garcia <berto@igalia.com>
58 [GTK] Unify webkitgtk and webkit2gtk directories
59 https://bugs.webkit.org/show_bug.cgi?id=136209
61 Reviewed by Carlos Garcia Campos.
63 Use webkit2gtk-X.X both for the process binaries and the injected
66 * Source/cmake/OptionsGTK.cmake:
68 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
70 [EFL] Move Efl specific code from Source/CMakeLists.txt
71 https://bugs.webkit.org/show_bug.cgi?id=136206
73 Reviewed by Gyuyoung Kim.
75 WebKit/Efl only uses ENABLE_WERROR so it can be moved into OptionsEfl.cmake.
76 Inaddition, renamed ADDITIONAL_FLAGS to ADDITIONAL_COMPILER_FLAGS.
78 * Source/CMakeLists.txt:
79 * Source/cmake/OptionsEfl.cmake:
81 2014-08-24 Ryuan Choi <ryuan.choi@samsung.com>
83 [EFL] Introduce DEVELOPER_MODE
84 https://bugs.webkit.org/show_bug.cgi?id=135884
86 Reviewed by Gyuyoung Kim.
88 Like GTK port, DEVELOPER_MODE can be good solution for developing, debugging and testing
89 instead of SHARED_CORE.
90 SHARED_CORE can reduce link time and memory consumption but it is slightly different
93 * Source/cmake/OptionsEfl.cmake:
94 * Source/cmake/WebKitHelpers.cmake:
95 Moved fvisibility=hidden to OptionsEfl.cmake
97 2014-08-22 KwangHyuk Kim <hyuki.kim@samsung.com>
99 [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
100 https://bugs.webkit.org/show_bug.cgi?id=136110
102 Reviewed by Gyuyoung Kim.
104 Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
106 * Source/cmake/OptionsEfl.cmake:
108 2014-08-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
110 [EFL] Apply eflsymbols.filter to WebKit2
111 https://bugs.webkit.org/show_bug.cgi?id=136148
113 Reviewed by Csaba Osztrogonác.
115 eflsymbol filter hasn't been applied to WK2 port. Additionally clean up WK1 symbol
116 in the eflsymbols.filter.
118 * Source/cmake/OptionsEfl.cmake:
119 * Source/cmake/eflsymbols.filter:
121 2014-08-21 Zalan Bujtas <zalan@apple.com>
123 Enable SATURATED_LAYOUT_ARITHMETIC.
124 https://bugs.webkit.org/show_bug.cgi?id=136106
126 Reviewed by Simon Fraser.
128 SATURATED_LAYOUT_ARITHMETIC protects LayoutUnit against arithmetic overflow.
129 (No measurable performance regression on Mac.)
131 * Source/cmake/OptionsMac.cmake:
132 * Source/cmake/WebKitFeatures.cmake:
133 * Source/cmakeconfig.h.cmake:
135 2014-08-19 Zalan Bujtas <zalan@apple.com>
137 Remove ENABLE(SUBPIXEL_LAYOUT).
138 https://bugs.webkit.org/show_bug.cgi?id=136077
140 Reviewed by Simon Fraser.
142 Remove compile time flag SUBPIXEL_LAYOUT. All ports have it enabled for a while now.
144 * Source/cmake/OptionsEfl.cmake:
145 * Source/cmake/OptionsGTK.cmake:
146 * Source/cmake/OptionsMac.cmake:
147 * Source/cmake/WebKitFeatures.cmake:
148 * Source/cmakeconfig.h.cmake:
150 2014-08-17 Zan Dobersek <zdobersek@igalia.com>
152 [CMake] Optimization-disabling compiler flags should be appended to CMAKE_C(XX)_FLAGS_RELEASE
153 https://bugs.webkit.org/show_bug.cgi?id=135980
155 Reviewed by Martin Robinson.
157 CMAKE_C(XX)_FLAGS_RELEASE variables usually contain the -On flag which
158 overrides any other disabled optimization that was prepended to these
159 variables or was added to the CMAKE_C(XX)_FLAGS variables which CMake
160 lists first in the final list of compilation flags.
162 To avoid -On re-enabling optimizations that we'd like to keep disabled,
163 the specific compiler flags must be appended to CMAKE_C(XX)_FLAGS_RELEASE.
165 * Source/cmake/OptionsCommon.cmake:
166 * Source/cmake/OptionsEfl.cmake: Also do the appending with CMAKE_SHARED_LINKER_FLAGS_RELEASE.
167 * Source/cmake/OptionsGTK.cmake:
169 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
171 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.3 release.
173 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
175 2014-08-15 Ting-Wei Lan <lantw44@gmail.com>
177 [GTK] Disable memory sampler on non-Linux system
178 https://bugs.webkit.org/show_bug.cgi?id=134483
180 Reviewed by Philippe Normand.
182 Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp only works on
183 Linux because it uses many Linux-specific features, so we should disable
184 memory sampler on other systems by default.
186 * Source/cmake/OptionsGTK.cmake:
188 2014-08-15 Carlos Garcia Campos <cgarcia@igalia.com>
190 [GTK] HTML API documentation should also be installed versioned
191 https://bugs.webkit.org/show_bug.cgi?id=135970
193 Reviewed by Philippe Normand.
195 * Source/PlatformGTK.cmake: Append -${WEBKITGTK_API_VERSION} to
198 2014-08-14 Tomas Popela <tpopela@redhat.com>
200 Add support for ppc, ppc64, ppc64le, s390, s390x into the CMake build
201 https://bugs.webkit.org/show_bug.cgi?id=135937
203 Reviewed by Carlos Garcia Campos.
207 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
209 [GTK] REGRESSION(r171598, CMake): Introspection files are installed at the wrong path
210 https://bugs.webkit.org/show_bug.cgi?id=135934
212 Reviewed by Gustavo Noronha Silva.
214 Since r171598 gir files are installed under $datadir/webkitgtk-4.0/gir-1.0/.
215 The gir files should installed in $datadir/gir-1.0/ together with all other
216 gir files. We don't need to install introspection files in a versioned
217 directory because their filenames already contain the binary version. But before
218 r171598, the files were only installed to the right directory if the
219 gobject-instrospection pkg-config file was in the same prefix than the one we
220 wanted to install, because the gir and typelibs directories were extracted from
221 the pkg-config file. We should define INTROSPECTION_INSTALL_GIRDIR and
222 INTROSPECTION_INSTALL_TYPELIBDIR in OptionsGTK.cmake based on $datadir and $libdir
223 like we do in the autotools build.
225 * Source/cmake/FindGObjectIntrospection.cmake: Do not define
226 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
227 * Source/cmake/OptionsGTK.cmake: Define
228 INTROSPECTION_INSTALL_GIRDIR and INTROSPECTION_INSTALL_TYPELIBDIR.
230 2014-08-14 Carlos Garcia Campos <cgarcia@igalia.com>
232 [GTK] WebKit DOM documentation (webkitdomgtk) not installed after make install
233 https://bugs.webkit.org/show_bug.cgi?id=135836
235 Reviewed by Philippe Normand.
237 * Source/PlatformGTK.cmake: Add install command to also install
238 the GObject DOM bindings API docs.
240 2014-08-14 Zan Dobersek <zdobersek@igalia.com>
242 Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
243 and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
244 re-set CMAKE_C_FLAGS with the new string. The two flags should really
245 be appended to CMAKE_C_FLAGS and the same variable re-set with the
248 * Source/cmake/OptionsCommon.cmake:
250 2014-08-13 Alex Christensen <achristensen@webkit.org>
252 Progress towards CMake on Mac.
253 https://bugs.webkit.org/show_bug.cgi?id=135819
255 Reviewed by Laszlo Gombos.
257 * Source/cmake/OptionsMac.cmake:
258 Disable some more features temporarily to get CMake working.
259 * Source/cmake/WebKitMacros.cmake:
260 Added an extension parameter to GENERATE_BINDINGS to allow ObjC bindings to generate .mm files.
262 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
264 [GTK] Subtle-crypto feature off by default and add a new configure flag to enable it
265 https://bugs.webkit.org/show_bug.cgi?id=135798
267 Reviewed by Philippe Normand.
269 * Source/cmake/OptionsGTK.cmake: Makes SUBTLE_CRYPTO flag off by default.
271 2014-08-12 Eduardo Lima Mitev <elima@igalia.com>
272 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
273 https://bugs.webkit.org/show_bug.cgi?id=133317
275 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
277 Reviewed by Philippe Normand.
279 No new tests since no new functionality has been added.
281 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
283 2014-08-11 Commit Queue <commit-queue@webkit.org>
285 Unreviewed, rolling out r172393.
286 https://bugs.webkit.org/show_bug.cgi?id=135796
288 discussion needed about GnuTLS version bump on the bots
289 (Requested by philn on #webkit).
293 https://bugs.webkit.org/show_bug.cgi?id=133317
294 http://trac.webkit.org/changeset/172393
296 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
297 [GTK] Adds dependency on GnuTLS 3.0+ for the implementation of subtle crypto algorithms
298 https://bugs.webkit.org/show_bug.cgi?id=133317
300 GnuTLS is already an indirect dependency through libsoup -> glib-networking.
302 Reviewed by Philippe Normand.
304 No new tests since no new functionality has been added.
306 * Source/cmake/OptionsGTK.cmake: Adds search for required GnuTLS package
308 2014-08-11 Eduardo Lima Mitev <elima@igalia.com>
310 [GTK] Adds stubs for all subtle crypto algorithm implemntations
311 https://bugs.webkit.org/show_bug.cgi?id=133316
313 Reviewed by Philippe Normand.
315 * Source/cmake/OptionsGTK.cmake: Add ENABLE_SUBTLE_CRYPTO option
316 * Source/cmake/WebKitFeatures.cmake: Add ENABLE_SUBTLE_CRYPTO option
317 * Source/cmakeconfig.h.cmake: Define ENABLE_SUBTLE_CRYPTO
319 2014-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
321 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.2 release.
323 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
325 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
327 [GTK] REGRESSION(r166239): The ld version script is not being used
328 https://bugs.webkit.org/show_bug.cgi?id=135694
330 Reviewed by Martin Robinson.
332 Move the symbols filter file from Tools/gtk to Source/cmake and rename
333 it as gtksymbols.filter. Also updated it, since some of the symbols
334 exported were renamed.
336 * Source/cmake/OptionsGTK.cmake:
337 * Source/cmake/gtksymbols.filter: Renamed from Tools/gtk/symbols.filter.
339 2014-08-10 Carlos Garcia Campos <cgarcia@igalia.com>
341 [GTK] Child processes should be installed in a versioned directory
342 https://bugs.webkit.org/show_bug.cgi?id=135754
344 Reviewed by Gustavo Noronha Silva.
346 Define LIBEXEC_INSTALL_DIR as
347 ${CMAKE_INSTALL_FULL_LIBEXECDIR}/webkitgtk-${WEBKITGTK_API_VERSION}
348 so that the child processes are installed in $libexec/webkitgtk-4.0.
349 This makes it possible to install 2.6 in parallel to older versions.
351 * Source/cmake/OptionsGTK.cmake:
353 2014-08-08 Alex Christensen <achristensen@webkit.org>
355 Progress towards using CMake on Mac.
356 https://bugs.webkit.org/show_bug.cgi?id=135662
358 Reviewed by Laszlo Gombos.
361 Mavericks has a flex version of "flex 2.5.35 Apple(flex-31)" which CMake doesn't like on Mac.
362 * Source/cmake/WebKitFeatures.cmake:
363 * Source/cmakeconfig.h.cmake:
364 Added features that are needed by the Mac port.
365 * Source/cmake/OptionsMac.cmake:
366 Enable CSS_IMAGE_SET based on FeatureDefines.h.
367 Disable the FTL with CMake for now.
368 * Source/cmake/OptionsEFL.cmake:
369 * Source/cmake/OptionsGTK.cmake:
370 Enable subpixel layout to not conflict with FeatureDefines.h
372 2014-08-08 Simon Fraser <simon.fraser@apple.com>
374 Undo some erroneous changes to the Xcode scheme files from r172259.
376 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
377 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
379 2014-08-08 Zan Dobersek <zdobersek@igalia.com>
381 [CMake] Drop the required version of CMake down to 2.8.8
382 https://bugs.webkit.org/show_bug.cgi?id=135713
384 Reviewed by Alex Christensen.
386 * CMakeLists.txt: Require CMake 2.8.8.
388 2014-08-07 Benjamin Poulain <bpoulain@apple.com>
390 Get rid of INPUT_SPEECH
391 https://bugs.webkit.org/show_bug.cgi?id=135672
393 Reviewed by Andreas Kling.
395 * Source/cmake/OptionsMac.cmake:
396 * Source/cmake/WebKitFeatures.cmake:
397 * Source/cmakeconfig.h.cmake:
399 2014-08-07 Csaba Osztrogonác <ossy@webkit.org>
401 [GTK] Disable IndexedDB
402 https://bugs.webkit.org/show_bug.cgi?id=135692
404 Reviewed by Carlos Garcia Campos.
406 * Source/cmake/OptionsGTK.cmake:
408 2014-08-06 Dean Jackson <dino@apple.com>
410 ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.
411 https://bugs.webkit.org/show_bug.cgi?id=135675
413 Reviewed by Sam Weinig.
415 * Source/cmake/OptionsGTK.cmake:
416 * Source/cmake/OptionsMac.cmake:
417 * Source/cmake/WebKitFeatures.cmake:
418 * Source/cmakeconfig.h.cmake:
420 2014-08-06 David Farler <dfarler@apple.com>
422 Unreviewed build fix: Make includes semicolon in assignment.
424 * Makefile.shared: Remove a ;
426 2014-08-06 David Farler <dfarler@apple.com>
428 Set DSYMUTIL_NUM_THREADS to the number of logical cores
429 https://bugs.webkit.org/show_bug.cgi?id=135655
431 Reviewed by Mark Rowe.
433 * Makefile.shared: Export DSYMUTIL_NUM_THREADS.
435 2014-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
437 [GTK] Be able to disable gtk2 dependency
438 https://bugs.webkit.org/show_bug.cgi?id=135505
440 Reviewed by Gustavo Noronha Silva.
442 Add ENABLE_PLUGIN_PROCESS_GTK2 compile option. GTK+2 is only
443 required when it's enabled. It's enabled by default.
445 * Source/cmake/OptionsGTK.cmake:
447 2014-08-05 Alex Christensen <achristensen@webkit.org>
450 https://bugs.webkit.org/show_bug.cgi?id=135620
452 Reviewed by Laszlo Gombos.
454 * Source/cmake/OptionsMac.cmake:
455 Use UDIS86 by default on Mac.
457 2014-08-04 Benjamin Poulain <benjamin@webkit.org>
459 Add a flag for the CSS Selectors level 4 implementation
460 https://bugs.webkit.org/show_bug.cgi?id=135535
462 Reviewed by Andreas Kling.
464 * Source/cmake/OptionsEfl.cmake:
465 * Source/cmake/OptionsGTK.cmake:
466 * Source/cmake/WebKitFeatures.cmake:
467 * Source/cmakeconfig.h.cmake:
469 2014-08-04 Alex Christensen <achristensen@webkit.org>
471 Progress towards CMake on Mac.
472 https://bugs.webkit.org/show_bug.cgi?id=135528
474 Reviewed by Gyuyoung Kim.
476 * Source/cmake/OptionsMac.cmake:
477 Made options list based on FeatureDefines.xcconfig files.
479 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
481 [GTK] Windowing target support should reflect the support in the GTK+ dependency
482 https://bugs.webkit.org/show_bug.cgi?id=134736
484 Reviewed by Martin Robinson.
486 * Source/cmake/FindGTK3.cmake: Don't error out if the GTK+ dependency doesn't
487 support the X11 or Wayland windowing targets -- instead, if there's no support
488 the specific target is disabled, and an error is thrown only if neither of the
489 backends is enabled at the end..
490 For now the X11 target remains enabled by default, and the Wayland target is
491 kept disabled. Once it's possible to have both targets enabled at runtime in
492 WebKit, the Wayland target will be enabled as well and we'll leave it to the
493 GTK+ dependency to determine which targets can be enabled.
495 2014-08-04 Zan Dobersek <zdobersek@igalia.com>
497 [CMake] Add FindWayland.cmake
498 https://bugs.webkit.org/show_bug.cgi?id=135540
500 Reviewed by Martin Robinson.
502 * Source/cmake/FindWayland.cmake: Added. Enables finding the Wayland
503 dependency. For now bundles the wayland-client, wayland-server and
504 wayland-egl pkg-config targets into one dependency, but these could
505 be split in the future if necessary.
507 2014-08-03 Ryuan Choi <ryuan.choi@samsung.com>
509 [EFL] Move DATA_INSTALL_DIR to ewebkit2-0
510 https://bugs.webkit.org/show_bug.cgi?id=135553
512 Reviewed by Gyuyoung Kim.
514 Since WebKit1/Efl is dropped, we don't need to use ewebkit-1 and ewebkit2-1.
515 And removed WebKit_OUTPUT_NAME variable which is not used anymore on the EFL port.
517 * Source/cmake/OptionsEfl.cmake:
519 2014-08-01 Bear Travis <betravis@adobe.com>
521 [Feature Queries] Enable Feature Queries on EFL/GTK
522 https://bugs.webkit.org/show_bug.cgi?id=134902
524 Reviewed by Benjamin Poulain.
526 Enable CSS Feature Queries by default on the EFL and GTK
529 * Source/cmake/OptionsEfl.cmake:
530 * Source/cmake/OptionsGTK.cmake:
532 2014-08-01 Alex Christensen <achristensen@webkit.org>
534 Progress towards cmake on Windows.
535 https://bugs.webkit.org/show_bug.cgi?id=135484
537 Reviewed by Martin Robinson.
540 Added Mac to list of ports, even though it is not done yet.
541 Changed minimum bison version to version installed on Macs.
542 * Source/cmake/OptionsAppleWin.cmake:
543 Added some definitions.
544 * Source/cmake/OptionsEfl.cmake:
545 * Source/cmake/OptionsGTK.cmake:
546 Set WTF_LIBRARY_TYPE to STATIC to not change WTF linking on EFL or GTK ports.
547 * Source/cmake/OptionsMac.cmake: Added blank for now.
548 * Source/cmake/OptionsWinCairo.cmake:
549 * Source/cmake/OptionsWindows.cmake:
550 Added some definitions.
551 Removed /WX (warnings treated as error while compiling).
552 Copied warnings to ignore from WebKitLibraries/win/tools/vsprops/common.props.
554 2014-08-01 Carlos Garcia Campos <cgarcia@igalia.com>
556 [CMake] GTK and EFL are using PROJECT_VERSION_PATCH to define the micro version
557 https://bugs.webkit.org/show_bug.cgi?id=135501
559 Reviewed by Gyuyoung Kim.
561 Use PROJECT_VERSION_MICRO instead.
563 * Source/cmake/OptionsEfl.cmake:
564 * Source/cmake/OptionsGTK.cmake:
565 * Source/cmake/WebKitHelpers.cmake:
567 2014-07-31 Ryuan Choi <ryuan.choi@samsung.com>
569 [EFL] Bump ewebkit version to 1.11
570 https://bugs.webkit.org/show_bug.cgi?id=135487
572 Reviewed by Gyuyoung Kim.
574 * Source/cmake/OptionsEfl.cmake: Bump version numbers.
576 2014-07-31 Carlos Alberto Lopez Perez <clopez@igalia.com>
578 [EFL] Add support for building with Geoclue2.
579 https://bugs.webkit.org/show_bug.cgi?id=135455
581 Reviewed by Gyuyoung Kim.
583 * Source/cmake/OptionsEfl.cmake: Add gio-unix if ENABLE_GEOLOCATION
586 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
588 Unreviewed. Update OptionsGTK.cmake and NEWS for 2.5.1 release.
590 * Source/cmake/OptionsGTK.cmake: Bump version numbers.
592 2014-07-31 Carlos Garcia Campos <cgarcia@igalia.com>
594 [GTK] Bump binary version for 2.6
595 https://bugs.webkit.org/show_bug.cgi?id=133724
597 Reviewed by Philippe Normand.
599 * Source/cmake/OptionsGTK.cmake: Bump binary version to 4.0 and
600 update library version numbers.
602 2014-07-30 Zan Dobersek <zdobersek@igalia.com>
604 [CMake] Bump the minimum required version
605 https://bugs.webkit.org/show_bug.cgi?id=135382
607 Reviewed by Gyuyoung Kim.
609 * CMakeLists.txt: Bump the minimum required version to 2.8.11 after
610 we introduced usage of target_include_directories().
612 2014-07-29 Hunseop Jeong <hs85.jeong@samsung.com>
614 [EFL][GTK] Remove ACCELERATED_COMPOSITING compile flag
615 https://bugs.webkit.org/show_bug.cgi?id=135376
617 Reviewed by Gyuyoung Kim.
619 ACCELERATED_COMPOSITING was changed to the mandatory code after r163079.
621 * Source/cmake/OptionsEfl.cmake:
622 * Source/cmake/OptionsGTK.cmake:
624 2014-07-25 Michael Catanzaro <mcatanzaro@igalia.com>
626 [GTK] CMake tries to install JavaScriptCore-3.0.gir outside of install prefix
627 https://bugs.webkit.org/show_bug.cgi?id=135288
629 Reviewed by Martin Robinson.
631 * Source/cmake/FindGObjectIntrospection.cmake: pass correct libdir and
633 * Source/cmake/OptionsGTK.cmake: define install directories early
634 enough to be used in FindGObjectIntrospection.cmake
636 2014-07-23 Bem Jones-Bey <bjonesbe@adobe.com>
638 Remove CSS_EXCLUSIONS compile flag and leftover code
639 https://bugs.webkit.org/show_bug.cgi?id=135175
641 Reviewed by Zoltan Horvath.
643 At this point, the CSS_EXCLUSIONS flag guards nothing but some useless
644 stubs. This removes the flag and the useless code.
646 * Source/cmake/WebKitFeatures.cmake:
647 * Source/cmakeconfig.h.cmake:
649 2014-07-22 Adrian Perez de Castro <aperez@igalia.com>
651 [GStreamer] [GTK] WebKit does not build with GStreamer 1.4
652 https://bugs.webkit.org/show_bug.cgi?id=135114
654 Fix build with GStreamer 1.4
656 Reviewed by Philippe Normand.
658 * Source/cmake/FindGStreamer.cmake: Check version 1.4.0 for the
659 gst-mpegts component instead of the unstable 1.3.x verstions.
661 2014-07-21 Carlos Garcia Campos <cgarcia@igalia.com>
663 [GTK] Simplify make-dist command line arguments
664 https://bugs.webkit.org/show_bug.cgi?id=134832
666 Reviewed by Martin Robinson.
668 * Source/PlatformGTK.cmake: Use --version instead of
669 --tarball-root when running make-dist.py.
671 2014-07-18 Jon Honeycutt <jhoneycutt@apple.com>
673 Add a manual test for r135044
675 <https://bugs.webkit.org/show_bug.cgi?id=135044>
677 Rubber-stamped by Andy Estes.
679 * ManualTests/ios/typing-in-field-that-clears-on-keyup.html: Added.
681 2014-07-18 Dana Burkart <dburkart@apple.com>
683 Add a new 'analyze' target to the makefile. This will make use of a new
684 'PATH_TO_SCAN_BUILD' which, if set will wrap xcodebuild in the clang
686 https://bugs.webkit.org/show_bug.cgi?id=135057
687 <rdar://problem/10193187>
689 Reviewed by David Kilzer.
695 2014-07-15 Ryuan Choi <ryuan.choi@samsung.com>
697 [CMAKE] ENABLE_ENCRYPTED_MEDIA_V2 should depend on ENABLE_VIDEO
698 https://bugs.webkit.org/show_bug.cgi?id=134963
700 Reviewed by Gyuyoung Kim.
702 ENCRYPTED_MEDIA_V2 requires VIDEO enabled.
704 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_ENCRYPTED_MEDIA_V2.
706 2014-07-14 Daniel Bates <dabates@apple.com>
708 [iOS] Add tests to ensure CSS :active and :hover are applied when processing touch events
709 https://bugs.webkit.org/show_bug.cgi?id=134905
710 <rdar://problem/16602779>
712 Reviewed by Simon Fraser.
714 Add a manual test to ensure that styles for CSS pseudo-class :hover aren't temporarily cleared
715 on the tapped element when processing a touchend as a result of finger pressing and releasing
716 on the same element that is initially positioned outside the visible content area.
718 * ManualTests/ios/touchstart-touchend-on-same-element-should-not-clear-hover.html: Added.
720 2014-07-11 Carlos Garcia Campos <cgarcia@igalia.com>
722 [GTK] Enable VIDEO_TRACK by default
723 https://bugs.webkit.org/show_bug.cgi?id=134801
725 Reviewed by Philippe Normand.
727 * Source/cmake/OptionsGTK.cmake:
729 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
731 [GTK][CMake] Add a 'distcheck' target
732 https://bugs.webkit.org/show_bug.cgi?id=130675
734 Reviewed by Gustavo Noronha Silva.
736 * Source/PlatformGTK.cmake: Add distcheck target.
738 2014-07-10 Carlos Garcia Campos <cgarcia@igalia.com>
740 [GTK] Use the same default options for production builds that previous stable releases
741 https://bugs.webkit.org/show_bug.cgi?id=134589
743 Reviewed by Martin Robinson.
745 Change the default value of some features to match our stable releases.
746 Add FindCairoGL to find cairo-gl libraries and make accelearetd 2D
747 canvas depend on whether cairo-gl is found.
749 * Source/cmake/FindCairoGL.cmake: Added.
750 * Source/cmake/OptionsGTK.cmake:
752 2014-07-08 Sun-woo Nam <sunny.nam@samsung.com>
754 [EFL] Support Encrypted Media Extensions.
755 https://bugs.webkit.org/show_bug.cgi?id=134750
757 Reviewed by Gyuyoung Kim.
759 Webkit needs to play encrypted media contents when media player
760 is played by Media source extensions and normal video procedure.
762 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_ENCRYPTED_MEDIA_V2
764 2014-07-08 Alex Christensen <achristensen@webkit.org>
766 Steps towards CMake on Windows.
767 https://bugs.webkit.org/show_bug.cgi?id=134716
769 Reviewed by Martin Robinson.
772 Added AppleWin and WinCairo to list of CMake ports.
773 * Source/cmake/OptionsAppleWin.cmake: Added.
774 * Source/cmake/OptionsWinCairo.cmake: Added.
775 * Source/cmake/OptionsWindows.cmake:
776 Windows needs to use the system malloc. Other options to come.
778 2014-07-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
780 [EFL] Support Geolocation
781 https://bugs.webkit.org/show_bug.cgi?id=134439
783 Reviewed by Antonio Gomes.
785 * Source/cmake/OptionsEfl.cmake: Turn on ENABLE_GEOLOCATION.
787 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
789 Broken build with build-webkit --no-video
790 https://bugs.webkit.org/show_bug.cgi?id=134587
792 Reviewed by Darin Adler.
794 MEDIA_CONTROLS_SCRIPT requires VIDEO enabled.
796 * Source/cmake/WebKitFeatures.cmake: Added the dependency for ENABLE_MEDIA_CONTROLS_SCRIPT.
798 2014-07-03 Carlos Garcia Campos <cgarcia@igalia.com>
800 [GTK] The list of features shown by cmake is not accurate
801 https://bugs.webkit.org/show_bug.cgi?id=134588
803 Reviewed by Gustavo Noronha Silva.
805 The problem is that some options might change after the feature
806 list has been printed.
808 * Source/cmake/OptionsGTK.cmake: Find package dependencies before
809 setting the default values of features and set WEBGL value
810 depending on the dependencies, and API_TEST depending on whether
811 developer mode is enabled or not.
813 2014-07-03 Ryuan Choi <ryuan.choi@samsung.com>
815 [CMAKE] Add WEBKIT_OPTION_DEPEND macro to resolve macro dependency
816 https://bugs.webkit.org/show_bug.cgi?id=134578
818 Reviewed by Gyuyoung Kim.
820 Some options depend on another option such as ENABLE_VIDEO_TRACK and ENABLE_VIDEO.
821 This patch adds WEBKIT_OPTION_DEPEND to check the depending option and
822 disable related option if it is not ON.
824 * Source/cmake/OptionsEfl.cmake: Removed hack for option dependency.
825 * Source/cmake/OptionsGTK.cmake: Ditto.
826 * Source/cmake/WebKitFeatures.cmake: Added WEBKIT_OPTION_DEPEND macro.
828 2014-07-02 Carlos Garcia Campos <cgarcia@igalia.com>
830 [GTK] make dist is broken
831 https://bugs.webkit.org/show_bug.cgi?id=134542
833 Reviewed by Martin Robinson.
835 * Source/PlatformGTK.cmake: Remove ENABLE_WEBKIT check.
837 2014-07-01 Zan Dobersek <zdobersek@igalia.com>
839 [CMake] Add necessary support for building for the Wayland target
840 https://bugs.webkit.org/show_bug.cgi?id=134160
842 Reviewed by Darin Adler.
844 * Source/cmake/FindGTK3.cmake: Check for the gtk+-x11-3.0 package if the X11 target
845 is enabled, and that its version matches the version of the generic package. Same
846 for the gtk+-wayland-3.0 package and the Wayland target.
847 * Source/cmake/OptionsCommon.cmake: Don't add the -DXP_UNIX definition here.
848 * Source/cmake/OptionsEfl.cmake: Add -DXP_UNIX here for the EFL port, under the same
849 condition as in OptionsCommon.cmake. ENABLE_X11_TARGET is enabled by default for EFL
850 so they keep building the TestNetscapePlugin target.
851 * Source/cmake/OptionsGTK.cmake: Enable the X11 target and disable the Wayland target
852 by default. Group all the X11-specific macro definitions (WTF_PLATFORM_X11, MOZ_X11,
853 XP_UNIX) and only add them if the X11 target is enabled. Similar goes for the Wayland
854 target and WTF_PLATFORM_WAYLAND. The Wayland target requires GTK+ 3.12.0, so that's
855 the minimum required version as soon as that target is enabled. Only search for GLX
856 if the X11 target is enabled.
858 2014-06-29 Yoav Weiss <yoav@yoav.ws>
860 Add support for HTMLImageElement's sizes attribute
861 https://bugs.webkit.org/show_bug.cgi?id=133620
863 Reviewed by Dean Jackson.
865 Added an ENABLE_PICTURE_SIZES compile flag.
867 * Source/cmake/WebKitFeatures.cmake:
868 * Source/cmakeconfig.h.cmake:
870 2014-06-26 Daniel Bates <dabates@apple.com>
872 [iOS][WK2] Distant focusable element may not be scrolled into view when focused using keyboard
873 https://bugs.webkit.org/show_bug.cgi?id=134309
874 <rdar://problem/17427385>
876 Reviewed by Darin Adler.
878 Add a manual test to ensure that we scroll to a distant focused text field when it's focused
881 * ManualTests/ios/scroll-to-distant-keyboard-focused-text-field.html: Added.
883 2014-06-25 Laszlo Gombos <l.gombos@samsung.com>
885 Remove build guard for progress element
886 https://bugs.webkit.org/show_bug.cgi?id=134292
888 Reviewed by Benjamin Poulain.
890 The build flag is no longer needed as it is always on.
892 * Source/cmake/WebKitFeatures.cmake:
893 * Source/cmakeconfig.h.cmake:
895 2014-06-23 Krzysztof Czech <k.czech@samsung.com>
897 [EFL] Platform support for WebSpeech feature.
898 https://bugs.webkit.org/show_bug.cgi?id=116438
900 Reviewed by Csaba Osztrogonác.
902 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
904 * Source/cmake/OptionsEfl.cmake:
905 * Source/cmake/WebKitFeatures.cmake:
907 2014-06-23 Philippe Normand <pnormand@igalia.com>
909 Unreviewed, GTK build fix after r170266.
911 * Source/cmake/OptionsGTK.cmake: Geoclue also requires gio-unix.
913 2014-06-22 Gyuyoung Kim <gyuyoung.kim@samsung.com>
915 Disable gamepad feature on EFL and GTK ports by default
916 https://bugs.webkit.org/show_bug.cgi?id=134169
918 Reviewed by Brady Eidson.
920 * Source/cmake/OptionsEfl.cmake: Disable ENABLE_GAMEPAD_DEPRECATED.
922 2014-06-21 Brady Eidson <beidson@apple.com>
924 Gamepad API - Deprecate the existing implementation
925 https://bugs.webkit.org/show_bug.cgi?id=134108
927 Reviewed by Timothy Hatcher.
929 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
930 -Add the "Deprecated" suffix to some implementation files
932 * Source/cmake/OptionsEfl.cmake:
933 * Source/cmake/OptionsGTK.cmake:
934 * Source/cmake/WebKitFeatures.cmake:
935 * Source/cmakeconfig.h.cmake:
937 2014-06-21 Commit Queue <commit-queue@webkit.org>
939 Unreviewed, rolling out r170244.
940 https://bugs.webkit.org/show_bug.cgi?id=134157
942 GTK/EFL bindings generator works differently, making this
943 patch not work there. Will fix entire patch after a rollout.
944 (Requested by bradee-oh on #webkit).
948 "Gamepad API - Deprecate the existing implementation"
949 https://bugs.webkit.org/show_bug.cgi?id=134108
950 http://trac.webkit.org/changeset/170244
952 2014-06-21 Brady Eidson <beidson@apple.com>
954 Gamepad API - Deprecate the existing implementation
955 https://bugs.webkit.org/show_bug.cgi?id=134108
957 Reviewed by Timothy Hatcher.
959 -Add new "GAMEPAD_DEPRECATED" build flag, moving the existing implementation to use it
960 -Add the "Deprecated" suffix to some implementation files
962 * Source/cmake/OptionsEfl.cmake:
963 * Source/cmake/OptionsGTK.cmake:
964 * Source/cmake/WebKitFeatures.cmake:
965 * Source/cmakeconfig.h.cmake:
967 2014-06-21 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
969 Removing PAGE_VISIBILITY_API compile guard.
970 https://bugs.webkit.org/show_bug.cgi?id=133844
972 Reviewed by Gavin Barraclough.
974 * Source/cmake/OptionsEfl.cmake:
975 * Source/cmake/OptionsGTK.cmake:
976 * Source/cmake/WebKitFeatures.cmake:
977 * Source/cmakeconfig.h.cmake:
979 2014-06-19 Ryuan Choi <ryuan.choi@samsung.com>
981 [EFL][CMAKE] Disable WebKit1 build as a default
982 https://bugs.webkit.org/show_bug.cgi?id=134093
984 Reviewed by Gyuyoung Kim.
986 Disable WebKit1 build and enable WebKit2 build for the EFL port.
988 * Source/cmake/OptionsEfl.cmake:
990 2014-06-19 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
992 Remove ENABLE(LLINT) and ENABLE(LLINT_C_LOOP) guards
993 https://bugs.webkit.org/show_bug.cgi?id=130389
995 Reviewed by Mark Lam.
997 Removed ENABLE(LLINT) since we always build with it, and changed ENABLE(LLINT_C_LOOP)
998 into !ENABLE(JIT) since they are mutually exclusive.
1000 * Source/cmake/OptionsEfl.cmake:
1001 * Source/cmake/OptionsGTK.cmake:
1002 * Source/cmake/WebKitFeatures.cmake:
1003 * Source/cmakeconfig.h.cmake:
1005 2014-06-17 Zan Dobersek <zdobersek@igalia.com>
1007 Remove the USE_GTK2=1 branch in OptionsGTK.cmake. This used to determine
1008 GTK+ and GDK libraries and include directories for the GTK+ 2 dependency,
1009 but we now only support GTK+ 3. The GTK+ 2 dependency is still required
1010 by the plugin process, but it is searched and utilized separately.
1012 Rubber-stamped by Carlos Garcia Campos.
1014 * Source/cmake/OptionsGTK.cmake:
1016 2014-06-16 Commit Queue <commit-queue@webkit.org>
1018 Unreviewed, rolling out r170003.
1019 https://bugs.webkit.org/show_bug.cgi?id=133938
1021 This patch broke GTK build (Requested by kczech on #webkit).
1025 "[EFL] Platform support for WebSpeech feature."
1026 https://bugs.webkit.org/show_bug.cgi?id=116438
1027 http://trac.webkit.org/changeset/170003
1029 2014-06-16 Krzysztof Czech <k.czech@samsung.com>
1031 [EFL] Platform support for WebSpeech feature.
1032 https://bugs.webkit.org/show_bug.cgi?id=116438
1034 Reviewed by Gyuyoung Kim.
1036 Add ENABLE_SPEECH_SYNTHESIS flag to have Speech Synthesis in EFL.
1038 * Source/cmake/OptionsEfl.cmake:
1039 * Source/cmake/WebKitFeatures.cmake:
1041 2014-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1043 [EFL] Remove duplicated compiler flag
1044 https://bugs.webkit.org/show_bug.cgi?id=133838
1046 Reviewed by Anders Carlsson.
1048 In r169798, literal-suffix was added for EFL port in order to fix build break. However,
1049 it added to common compiler options. So, it is duplicated.
1051 * Source/cmake/WebKitHelpers.cmake:
1053 2014-06-11 Commit Queue <commit-queue@webkit.org>
1055 Unreviewed, rolling out r169877.
1056 https://bugs.webkit.org/show_bug.cgi?id=133784
1058 rollout wrong build fix approach for EFL port (Requested by
1059 gyuyoung on #webkit).
1063 "Unreviewed, EFL build fix since r169869."
1064 http://trac.webkit.org/changeset/169877
1066 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1068 Unreviewed, EFL build fix since r169869.
1070 Additionally literal-suffix is removed in EFL compile flag, because it is duplicated.
1072 * Source/cmake/WebKitHelpers.cmake: Treat undef error as build warning.
1074 2014-06-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1076 Unreviewed, EFL build fix. Treat literal-suffix error as build warning.
1078 * Source/cmake/WebKitHelpers.cmake:
1080 2014-05-28 Carlos Garcia Campos <cgarcia@igalia.com>
1082 [GTK] Make it possible to build with FTL enabled
1083 https://bugs.webkit.org/show_bug.cgi?id=133219
1085 Reviewed by Philippe Normand.
1087 Add LLVM and LIBCXXABI as dependencies when building with FTL enabled.
1089 * Source/cmake/OptionsGTK.cmake:
1091 2014-05-28 Jaehun Lim <ljaehun.lim@samsung.com>
1093 [CMake] Clean up FAST_MOBILE_SCROLLING
1094 https://bugs.webkit.org/show_bug.cgi?id=133342
1096 Reviewed by Gyuyoung Kim.
1098 FAST_MOBILE_SCROLLING was removed in r168726.
1100 * Source/cmake/OptionsEfl.cmake:
1101 * Source/cmake/OptionsGTK.cmake:
1102 * Source/cmake/WebKitFeatures.cmake:
1103 * Source/cmakeconfig.h.cmake:
1105 2014-05-27 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1108 https://bugs.webkit.org/show_bug.cgi?id=132863
1110 Reviewed by Csaba Osztrogonác.
1112 * Source/cmake/OptionsEfl.cmake:
1113 * Source/cmake/OptionsGTK.cmake:
1114 * Source/cmake/WebKitFeatures.cmake:
1115 * Source/cmakeconfig.h.cmake:
1117 2014-05-27 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
1119 Allow building CMake based ports with WEB_REPLAY
1120 https://bugs.webkit.org/show_bug.cgi?id=133154
1122 Reviewed by Csaba Osztrogonác.
1124 * Source/cmake/WebKitFeatures.cmake:
1125 * Source/cmakeconfig.h.cmake:
1127 2014-05-21 Zsolt Borbely <zsborbely.u-szeged@partner.samsung.com>
1129 [EFL] Add include path of compact_unwind_encoding.h if FTL JIT is enabled
1130 https://bugs.webkit.org/show_bug.cgi?id=132907
1132 Reviewed by Gyuyoung Kim.
1134 * Source/cmake/FindLIBCXXABI.cmake: Added.
1135 * Source/cmake/OptionsEfl.cmake:
1137 2014-05-21 Michał Pakuła vel Rutka <m.pakula@samsung.com>
1139 [EFL] Turn on ENABLE_CSS_FILTERS
1140 https://bugs.webkit.org/show_bug.cgi?id=133153
1142 Reviewed by Gyuyoung Kim.
1144 * Source/cmake/OptionsEfl.cmake: Enable CSS_FILTERS as default option value.
1146 2014-05-16 Martin Robinson <mrobinson@igalia.com>
1148 [CMake] Improve handling of LIB_INSTALL_DIR, EXEC_INSTALL_DIR, and LIBEXEC_INSTALL_DIR
1149 https://bugs.webkit.org/show_bug.cgi?id=132819
1151 Reviewed by Carlos Garcia Campos.
1153 * CMakeLists.txt: Hard-code CMAKE_ARCHIVE_OUTPUT_DIRECTORY etc, so that we can accept absolute paths for LIB_INSTALL_DIR
1155 * Source/cmake/OptionsCommon.cmake: Get rid of LIB_SUFFIX and try to make all path variables absolute. Also set
1156 CMAKE_ARCHIVE_OUTPUT_DIRECTORY, etc using the last path component of LIB_INSTALL_DIR, etc, so that absolute paths
1158 * Source/cmake/OptionsGTK.cmake: Ditto. Also get rid of all pkg-config specific variables.
1160 2014-05-20 Gustavo Noronha Silva <gns@gnome.org>
1162 [CMake] Support building with Debug Fission
1163 https://bugs.webkit.org/show_bug.cgi?id=131177
1165 Reviewed by Philippe Normand.
1167 * Source/cmake/OptionsCommon.cmake: add a DEBUG_FISSION option to enable usage
1168 of http://gcc.gnu.org/wiki/DebugFission.
1170 2014-05-20 Carlos Garcia Campos <cgarcia@igalia.com>
1172 [GTK] Rename translation domain as WebKit2GTK-3.0
1173 https://bugs.webkit.org/show_bug.cgi?id=132953
1175 Reviewed by Gustavo Noronha Silva.
1177 * Source/cmake/OptionsGTK.cmake:
1179 2014-05-18 Rik Cabanier <cabanier@adobe.com>
1181 support for navigator.hardwareConcurrency
1182 https://bugs.webkit.org/show_bug.cgi?id=132588
1184 Reviewed by Filip Pizlo.
1186 * Source/cmake/OptionsEfl.cmake:
1187 * Source/cmake/OptionsGTK.cmake:
1188 * Source/cmake/WebKitFeatures.cmake:
1189 * Source/cmakeconfig.h.cmake:
1191 2014-05-14 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1193 Remove CSS_STICKY_POSITION guards
1194 https://bugs.webkit.org/show_bug.cgi?id=132676
1196 Reviewed by Simon Fraser.
1198 * Source/cmake/OptionsEfl.cmake:
1199 * Source/cmake/OptionsGTK.cmake:
1200 * Source/cmake/WebKitFeatures.cmake:
1201 * Source/cmakeconfig.h.cmake:
1203 2014-05-12 Carlos Garcia Campos <cgarcia@igalia.com>
1205 Unreviewed. Bump version numbers.
1207 * Source/cmake/OptionsGTK.cmake:
1209 2014-05-10 Martin Robinson <mrobinson@igalia.com>
1211 [GTK][CMake] Unable to do make install
1212 https://bugs.webkit.org/show_bug.cgi?id=130188
1214 Reviewed by Carlos Garcia Campos.
1216 Only try to install the HTML documentation if the build is configured to generate it via
1217 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
1218 to keep the HTML documentation directory as an installation source.
1220 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
1221 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
1222 now only added to the default target when DEVELOPER_MODE is true and ENABLE_GTKDOC is
1223 false. When both ENABLE_GTKDOC and DEVELOPER_MODE are false, documentation isn't built at all.
1224 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
1226 2014-05-09 Anders Carlsson <andersca@apple.com>
1228 Rename WebKit2.framework to WebKit.framework
1229 https://bugs.webkit.org/show_bug.cgi?id=132743
1230 <rdar://problem/15920046>
1232 Reviewed by Dan Bernstein.
1235 Build WebKit.xcodeproj before WebKit2.xcodeproj.
1237 * WebKit.xcworkspace/xcshareddata/xcschemes/:
1240 2014-05-06 David Kilzer <ddkilzer@apple.com>
1242 Add Makefile targets for copying static libraries (LLVM and WKSI)
1243 <http://webkit.org/b/132619>
1245 Reviewed by Mark Rowe.
1248 (MODULES): Add WebKitLibraries.
1250 2014-05-06 Commit Queue <commit-queue@webkit.org>
1252 Unreviewed, rolling out r168304.
1253 https://bugs.webkit.org/show_bug.cgi?id=132607
1255 Broke the build (Requested by KaL on #webkit).
1259 "[GTK][CMake] Unable to do make install"
1260 https://bugs.webkit.org/show_bug.cgi?id=130188
1261 http://trac.webkit.org/changeset/168304
1263 2014-05-05 Martin Robinson <mrobinson@igalia.com>
1265 [GTK][CMake] Unable to do make install
1266 https://bugs.webkit.org/show_bug.cgi?id=130188
1268 Reviewed by Carlos Garcia Campos.
1270 Only try to install the HTML documentation if the build is configured to generate it via
1271 the new ENABLE_GTKDOC option. We cannot conditionally install something, so this allows us
1272 to keep the HTML documentation directory as an installation source.
1274 * Source/PlatformGTK.cmake: The gtkdoc target now always builds HTML documentation, but
1275 is only added to the default target when ENABLE_GTKDOC is turned on. gtkdoc-no-html is
1276 never added to the default target, but will be triggered by build-webkit, so that
1277 when ENABLE_GTKDOC is off and build-webkit isn't used, documentation isn't built at all.
1278 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_GTKDOC option to the build.
1280 2014-05-03 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1282 [CMake] Define SHOULD_INSTALL_JS_SHELL before including ports Options files.
1283 https://bugs.webkit.org/show_bug.cgi?id=132525
1285 Reviewed by Martin Robinson.
1287 * CMakeLists.txt: If OPTION() is called after Options${PORT}.cmake is included, it will
1288 override whatever value a port may have set for it. The GTK+ port, for example, tries to set
1289 it to SHOULD_INSTALL_JS_SHELL to ON by default, even though it did not happen before.
1291 2014-05-01 David Kilzer <ddkilzer@apple.com>
1293 Really remove ENABLE_PLUGIN_PROXY_FOR_VIDEO
1294 <http://webkit.org/b/132432>
1296 Reviewed by Tim Horton.
1298 * Source/cmake/WebKitFeatures.cmake:
1299 * Source/cmakeconfig.h.cmake:
1300 - Remove ENABLE_PLUGIN_PROXY_FOR_VIDEO as build option.
1302 2014-04-30 Simon Fraser <simon.fraser@apple.com>
1304 Make sure the "All" targets build WebKitLegacy, rather than WebKit.
1306 Reviewed by Dan Bernstein/Anders Carlsson.
1308 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1309 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1311 2014-04-30 Simon Fraser <simon.fraser@apple.com>
1313 Let Xcode have its way with the WebKit workspace.
1315 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1316 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1318 2014-04-29 Martin Robinson <mrobinson@igalia.com>
1320 [GTK] Make it easier to run CMake for downstreams
1321 https://bugs.webkit.org/show_bug.cgi?id=132370
1323 Reviewed by Carlos Garcia Campos.
1325 * Source/cmake/OptionsGTK.cmake: Turn PRODUCTION_MODE into DEVELOPER_MODE.
1327 2014-04-27 Joonghun Park <jh718.park@samsung.com>
1329 [EFL] Remove indexedDB's dependency on leveldb and disable indexedDB
1330 https://bugs.webkit.org/show_bug.cgi?id=132176
1332 Reviewed by Gyuyoung Kim.
1334 EFL port will use sqlite to support indexedDB. So, this patch removes levelDB dependency for now.
1336 * Source/cmake/OptionsEfl.cmake:
1338 2014-04-22 Alex Christensen <achristensen@webkit.org>
1340 Removed old stdbool and inttypes headers.
1341 https://bugs.webkit.org/show_bug.cgi?id=131966
1343 Reviewed by Brent Fulgham.
1345 * Source/cmake/OptionsWindows.cmake:
1346 * Source/cmake/WebKitPackaging.cmake:
1347 Removed references to os-win32 directory.
1349 2014-04-22 Zan Dobersek <zdobersek@igalia.com>
1351 Fix a typo in WebKitFeatures.cmake -- INITALVALUE -> INITIALVALUE.
1353 Rubber-stamped by Carlos Garcia Campos.
1355 * Source/cmake/WebKitFeatures.cmake:
1357 2014-04-18 Jon Honeycutt <jhoneycutt@apple.com>
1359 Empty RenderInline objects should not be line break objects.
1361 https://bugs.webkit.org/show_bug.cgi?id=131861
1362 <rdar://problem/15663617>
1364 Reviewed by David Hyatt.
1366 * ManualTests/empty-inline-as-line-break-position.html: Added.
1367 This issue wouldn't reproduce in WebKitTestRunner.
1369 2014-04-19 Brent Fulgham <bfulgham@apple.com>
1371 Revert unintended workspace change in my last commit.
1373 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Set the
1374 Scheme type back to Debug.
1376 2014-04-18 Philippe Normand <pnormand@igalia.com>
1378 Remove NETWORK_INFO support
1379 https://bugs.webkit.org/show_bug.cgi?id=131841
1381 Reviewed by Gyuyoung Kim.
1383 * Source/cmake/OptionsEfl.cmake:
1384 * Source/cmake/OptionsGTK.cmake:
1385 * Source/cmake/WebKitFeatures.cmake:
1386 * Source/cmakeconfig.h.cmake:
1388 2014-04-17 Darin Adler <darin@apple.com>
1390 Try to fix EFL and GTK builds.
1392 * Source/cmake/OptionsEfl.cmake: Add INDEXED_DATABASE_IN_WORKERS.
1393 * Source/cmake/OptionsGTK.cmake: Ditto.
1394 * Source/cmakeconfig.h.cmake: Ditto.
1396 2014-04-16 Brendan Long <b.long@cablelabs.com>
1398 [GTK][CMAKE] build-webkit doesn't detect when the build fails
1399 https://bugs.webkit.org/show_bug.cgi?id=130148
1401 Reviewed by Martin Robinson.
1403 * Source/cmake/OptionsGTK.cmake: Replace CMake's automatic make -i with make -k, which still continues after errors, but correctly reports tha the build failed.
1405 2014-04-16 Carlos Garcia Campos <cgarcia@igalia.com>
1407 REGRESSION(r166779): [GTK] Printing doesn't work since r166779
1408 https://bugs.webkit.org/show_bug.cgi?id=131725
1410 Reviewed by Philippe Normand.
1412 * Source/cmake/OptionsGTK.cmake: Check GTK_UNIX_PRINT_FOUND
1413 instead of GTK_UNIX_PRINTING_FOUND and set the macro
1414 HAVE_GTK_UNIX_PRINTING to 1 when found.
1416 2014-04-11 Brian J. Burg <burg@cs.washington.edu>
1418 Web Replay: memoize nondeterministic attributes of the Navigator interface
1419 https://bugs.webkit.org/show_bug.cgi?id=131340
1421 Reviewed by Timothy Hatcher.
1423 * ManualTests/inspector/replay-window-navigator-basic.html: Added.
1425 2014-04-09 Brendan Long <b.long@cablelabs.com>
1427 [GStreamer] Expose MPEG-TS metadata
1428 https://bugs.webkit.org/show_bug.cgi?id=122001
1430 Reviewed by Eric Carlson.
1432 * Source/cmake/FindGStreamer.cmake: Look for gstreamer-mpegts >= 1.3.0.
1433 * Source/cmake/OptionsEfl.cmake: Same.
1434 * Source/cmake/OptionsGTK.cmake: Same.
1436 2014-04-08 Brian J. Burg <burg@cs.washington.edu>
1438 Web Replay: memoize nondeterministic attributes of the Screen interface
1439 https://bugs.webkit.org/show_bug.cgi?id=131339
1441 Reviewed by Timothy Hatcher.
1443 * ManualTests/inspector/replay-window-screen.html: Added.
1445 2014-04-08 Martin Robinson <mrobinson@igalia.com>
1447 [GTK] Remove the WebKitGTK+ WebKit 1 code
1448 https://bugs.webkit.org/show_bug.cgi?id=131399
1450 Reviewed by Anders Carlsson.
1452 * Source/PlatformGTK.cmake: Remove WebKit1 dependency from dist target.
1453 * Source/cmake/OptionsGTK.cmake: Remove option to compile with GTK+2 or with WebKit2 disabled.
1455 2014-04-08 Dan Bernstein <mitz@apple.com>
1457 Added bmalloc to the WebKit workspace.
1458 https://bugs.webkit.org/show_bug.cgi?id=131362
1460 Reviewed by Geoff Garen.
1462 * WebKit.xcworkspace/contents.xcworkspacedata:
1463 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1464 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1466 2014-04-08 Geoffrey Garen <ggaren@apple.com>
1468 Build bmalloc on iOS too
1469 https://bugs.webkit.org/show_bug.cgi?id=131381
1471 Reviewed by Andreas Kling.
1473 * Source/Makefile: Build it.
1475 2014-04-07 Geoffrey Garen <ggaren@apple.com>
1477 Build bmalloc on Mac
1478 https://bugs.webkit.org/show_bug.cgi?id=131333
1480 Reviewed by Mark Rowe.
1483 * WebKitBuild: Added.
1484 * WebKitBuild/Debug: Added.
1486 2014-04-07 Ryuan Choi <ryuan.choi@samsung.com>
1488 [EFL] Turn on ENABLE_MEDIA_CONTROLS_SCRIPT
1489 https://bugs.webkit.org/show_bug.cgi?id=131257
1491 Reviewed by Gyuyoung Kim.
1493 * Source/cmake/OptionsEfl.cmake: Enable MEDIA_CONTROLS_SCRIPT
1495 2014-04-06 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1497 [GTK] Stop trying to install WebKit1 documentation
1498 https://bugs.webkit.org/show_bug.cgi?id=131278
1500 Reviewed by Martin Robinson.
1502 * Source/PlatformGTK.cmake: Remove install() call since the WebKit1 documentation is not
1503 built anymore since r166584. This fixes `make install'.
1505 2014-04-04 Brian J. Burg <burg@cs.washington.edu>
1507 Web Replay: capture and replay wheel events and scroll commands
1508 https://bugs.webkit.org/show_bug.cgi?id=129402
1510 Reviewed by Timothy Hatcher.
1512 * ManualTests/inspector/replay-wheel-events.html: Added.
1514 2014-04-04 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1516 [GTK][CMake] Remove FindXt.cmake.
1517 https://bugs.webkit.org/show_bug.cgi?id=131227
1519 Reviewed by Anders Carlsson.
1521 Xt is already detected by CMake's own FindX11.cmake, so there is no need to keep a custom FindXt.cmake around.
1523 * Source/cmake/FindXt.cmake: Removed.
1524 * Source/cmake/OptionsGTK.cmake:
1526 2014-04-04 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
1528 [EFL] Build error due to changed path of generated js files.
1529 https://bugs.webkit.org/show_bug.cgi?id=131215
1531 Reviewed by Gyuyoung Kim.
1533 r166648 fixed the generation of some .js files on GTK. Due to some
1534 changes in the paths it causes a build error on EFL.
1536 * Source/PlatformEfl.cmake:
1537 Replaced path for two derived source files.
1539 2014-04-02 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1541 [GTK][CMake] Look for glx.h in OPENGL_INCLUDE_DIR.
1542 https://bugs.webkit.org/show_bug.cgi?id=131095
1544 Reviewed by Martin Robinson.
1546 One needs to take into account OpenGL's include directory found via
1547 find_package() when looking for glx.h, since if the former is a
1548 non-standard location the latter will also be. If this is not it is
1549 possible that OpenGL is found but GLX support is not properly detected.
1551 * Source/cmake/OptionsGTK.cmake:
1553 2014-04-02 Martin Robinson <mrobinson@igalia.com>
1555 REGRESSION(r165704): [GTK] Inspector resources not correctly generated
1556 https://bugs.webkit.org/show_bug.cgi?id=130343
1558 Reviewed by Gustavo Noronha Silva.
1560 * CMakeLists.txt: Add a variable which points to the directory to store WebInspectorUI
1562 * Source/cmake/WebKitFS.cmake: Generate WebInspectorUI derived sources directories.
1564 2014-04-01 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1566 [CMake] Drop port check from FindEGL.cmake.
1567 https://bugs.webkit.org/show_bug.cgi?id=131091
1569 Reviewed by Gyuyoung Kim.
1571 There is no reason to mark some variables as advanced only for the
1574 * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
1575 as advanced regardless of the port.
1577 2014-04-01 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
1579 Fix the !ENABLE(BATTERY_STATUS) build
1580 https://bugs.webkit.org/show_bug.cgi?id=130183
1582 Reviewed by Anders Carlsson.
1584 * Source/cmake/OptionsEfl.cmake:
1586 2014-03-31 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1588 [CMake][GTK] Do not expand variables twice in if() checks.
1589 https://bugs.webkit.org/show_bug.cgi?id=130964
1591 Reviewed by Martin Robinson.
1593 In CMake, `if (${foo})' causes $foo to be evaluated first and its value
1594 to be checked by the if clause. This is not what we want, and
1595 configuration fails when, say, GLX support wasn't found as the if
1596 clause is actually evaluated as `if (TRUE AND (OR TRUE))'.
1598 * Source/cmake/OptionsGTK.cmake: Pass if (FOO) instead of if (${FOO})
1601 2014-03-31 Martin Robinson <mrobinson@igalia.com>
1603 [GTK] Remove scripts code only applicable to autotools
1604 https://bugs.webkit.org/show_bug.cgi?id=130841
1606 Reviewed by Anders Carlsson.
1608 * Source/cmake/WebKitPackaging.cmake: No longer need to consider autotools files.
1610 2014-03-31 Martin Robinson <mrobinson@igalia.com>
1612 [GTK] Use PROJECT_VERSION_* instead of WEBKIT_*_VERSION
1613 https://bugs.webkit.org/show_bug.cgi?id=130936
1615 Reviewed by Carlos Garcia Campos.
1617 * Source/cmake/OptionsGTK.cmake: No longer emulate the Autotools macro names.
1619 2014-03-31 Carlos Garcia Campos <cgarcia@igalia.com>
1621 [GTK] Add support for GTK3 plugins
1622 https://bugs.webkit.org/show_bug.cgi?id=130599
1624 Reviewed by Martin Robinson.
1626 * Source/cmake/OptionsGTK.cmake:
1628 2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1630 [EFL] Bump glib version from 2.36 to 2.38
1631 https://bugs.webkit.org/show_bug.cgi?id=130886
1633 Reviewed by Csaba Osztrogonác.
1635 * Source/cmake/OptionsEfl.cmake: Required glib-2.38 version.
1637 2014-03-26 Zoltan Horvath <zoltan@webkit.org>
1639 [CSS Shapes] Remove shape-inside support
1640 https://bugs.webkit.org/show_bug.cgi?id=130698
1642 Reviewed by David Hyatt.
1644 * Source/cmake/WebKitFeatures.cmake:
1645 * Source/cmakeconfig.h.cmake:
1647 2014-03-25 Martin Robinson <mrobinson@igalia.com>
1649 [GTK] Remove the autotools build
1650 https://bugs.webkit.org/show_bug.cgi?id=130717
1652 Reviewed by Anders Carlsson.
1654 * .gitignore: Remove references to autotools files.
1655 * GNUmakefile.am: Removed.
1656 * Source/autotools/CheckSystemAndBasicDependencies.m4: Removed.
1657 * Source/autotools/CustomMacros.m4: Removed.
1658 * Source/autotools/FindDependencies.m4: Removed.
1659 * Source/autotools/PrintBuildConfiguration.m4: Removed.
1660 * Source/autotools/ReadCommandLineArguments.m4: Removed.
1661 * Source/autotools/SetupAutoconfHeader.m4: Removed.
1662 * Source/autotools/SetupAutomake.m4: Removed.
1663 * Source/autotools/SetupCompilerFlags.m4: Removed.
1664 * Source/autotools/SetupLibtool.m4: Removed.
1665 * Source/autotools/SetupWebKitFeatures.m4: Removed.
1666 * Source/autotools/Versions.m4: Removed.
1667 * Source/autotools/acinclude.m4: Removed.
1668 * Source/autotools/dolt.m4: Removed.
1669 * Source/autotools/gsettings.m4: Removed.
1670 * Source/cmake/OptionsGTK.cmake:
1671 * autogen.sh: Removed.
1672 * configure.ac: Removed.
1674 2014-03-25 Gabor Rapcsanyi <rgabor@webkit.org>
1676 [EFL] Add ARM64 build support
1677 https://bugs.webkit.org/show_bug.cgi?id=130506
1679 Rubber stamped by Gyuyoung Kim.
1681 * CMakeLists.txt: Set WTF_CPU_ARM64 when aarch64 is defined.
1683 2014-03-25 Michał Pakuła vel Rutka <m.pakula@samsung.com>
1685 [EFL][WK2] Add NETWORK_PROCESS build option
1686 https://bugs.webkit.org/show_bug.cgi?id=130131
1688 Reviewed by Gyuyoung Kim.
1690 Add option to build EFL port with NETWORK_PROCESS set on. By default NETWORK_PROCESS is
1693 * Source/cmake/OptionsEfl.cmake:
1695 2014-03-24 Brian Burg <bburg@apple.com>
1697 Web Replay: capture and replay keyboard events
1698 https://bugs.webkit.org/show_bug.cgi?id=130314
1700 Reviewed by Joseph Pecoraro.
1702 * ManualTests/inspector/replay-keyboard-events.html: Added.
1704 2014-03-24 Sangyong Park <sy302.park@gmail.com>
1706 [EFL] Inspector page is not loaded.
1707 https://bugs.webkit.org/show_bug.cgi?id=130661
1709 Reviewed by Gyuyoung Kim.
1711 Inspector page is not loaded, because some javascript files are not installed.
1712 (InspectorJSBackendCommands.js, InspectorWebBackendCommands.js)
1714 * Source/PlatformEfl.cmake:
1716 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
1718 [EFL][GTK] Get CMake to find Freetype2 properly
1719 https://bugs.webkit.org/show_bug.cgi?id=130150
1721 Reviewed by Martin Robinson.
1723 Newer versions of CMake are not able to find Freetype2 correctly.
1724 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
1725 freetype2 repo, because a completely different version number is found in freetype2.pc.
1727 * Source/cmake/FindFreetype2.cmake: Added.
1728 * Source/cmake/OptionsEfl.cmake:
1729 * Source/cmake/OptionsGTK.cmake:
1731 2014-03-20 Brian Burg <bburg@apple.com>
1733 Web Replay: capture and replay mouse events
1734 https://bugs.webkit.org/show_bug.cgi?id=129395
1736 Reviewed by Joseph Pecoraro.
1738 Create a manual test for capture/replay of mouse events.
1739 Copy over the crypto-md5.js library from SunSpider.
1741 * ManualTests/inspector/replay-mouse-events.html: Added.
1742 * ManualTests/inspector/resources/crypto-md5.js: Added.
1744 2014-03-20 Zan Dobersek <zdobersek@igalia.com>
1746 [GTK][CMake] Add support for building with Clang
1747 https://bugs.webkit.org/show_bug.cgi?id=130260
1749 Reviewed by Martin Robinson.
1751 * Source/PlatformGTK.cmake: Run the generate-gtkdoc script with the CFLAGS env set
1752 to the list C compiler flags as constructed by CMake.
1753 * Source/cmake/OptionsCommon.cmake: When building with Clang, use the -Qunused-arguments
1754 compiler option to suppress verbose warnings about arguments that went unused by the driver.
1755 * Source/cmake/OptionsGTK.cmake: Use -fno-omit-frame-pointer for both GCC and Clang.
1756 -fno-tree-dce should be used only for GCC.
1757 * Source/cmake/gtest/CMakeLists.txt: When building with Clang the GTest framework
1758 should be built with GTEST_HAS_TR1_TUPLE macro defined to 0 to avoid build failures.
1760 2014-03-20 Commit Queue <commit-queue@webkit.org>
1762 Unreviewed, rolling out r165962.
1763 https://bugs.webkit.org/show_bug.cgi?id=130512
1765 It broke the build (Requested by Ossy on #webkit).
1769 "[EFL][GTK] Get CMake to find Freetype2 properly"
1770 https://bugs.webkit.org/show_bug.cgi?id=130150
1771 http://trac.webkit.org/changeset/165962
1773 2014-03-20 Thiago de Barros Lacerda <thiago.lacerda@openbossa.org>
1775 [EFL][GTK] Get CMake to find Freetype2 properly
1776 https://bugs.webkit.org/show_bug.cgi?id=130150
1778 Reviewed by Csaba Osztrogonác.
1780 Newer versions of CMake are not able to find Freetype2 correctly.
1781 FindFreetype2.cmake checks for the version number in freetype.h header, since it seems that bug exists in
1782 freetype2 repo, because a completely different version number is found in freetype2.pc.
1784 * Source/cmake/FindFreetype2.cmake: Added.
1785 * Source/cmake/OptionsEfl.cmake:
1786 * Source/cmake/OptionsGTK.cmake:
1788 2014-03-17 Brendan Long <b.long@cablelabs.com>
1790 [GStreamer] human readable language code for tracks
1791 https://bugs.webkit.org/show_bug.cgi?id=124514
1793 Reviewed by Martin Robinson.
1795 * Source/autotools/FindDependencies.m4: Add gstreamer-tag-1.0.
1796 * Source/cmake/FindGStreamer.cmake: Same.
1797 * Source/cmake/OptionsEfl.cmake: Same.
1798 * Source/cmake/OptionsGTK.cmake: Same.
1800 2014-03-17 Martin Robinson <mrobinson@igalia.com>
1802 [GTK][CMake] Credential storage is not enabled
1803 https://bugs.webkit.org/show_bug.cgi?id=130149
1805 Reviewed by Philippe Normand.
1807 * Source/cmake/OptionsGTK.cmake: Add an ENABLE_CREDENTIAL_STORAGE option to the configuration
1808 and look libsecret when it's enabled.
1809 * Source/cmakeconfig.h.cmake: Expose the ENABLE_CREDENTIAL_STORAGE option to the build.
1811 2014-03-17 Martin Robinson <mrobinson@igalia.com>
1813 [GTK][CMake] Ensure that HAVE_GTK_UNIX_PRINTING is defined when appropriate
1814 https://bugs.webkit.org/show_bug.cgi?id=130155
1816 Reviewed by Philippe Normand.
1818 * Source/cmake/FindGTKUnixPrint.cmake: Added.
1819 * Source/cmake/OptionsGTK.cmake: Look for gtk+-unix-print and use it to turn on HAVE_GTK_UNIX_PRINTING.
1820 * Source/cmakeconfig.h.cmake: Add the HAVE_GTK_UNIX_PRINTING define.
1822 2014-03-16 Kim Byung Jun <bj1987.kim@samsung.com>
1824 [EFL] Enable TOUCH_SLIDER macro.
1825 https://bugs.webkit.org/show_bug.cgi?id=130186
1827 Reviewed by Gyuyoung Kim.
1829 * Source/cmake/OptionsEfl.cmake:
1831 2014-03-16 Zan Dobersek <zdobersek@igalia.com>
1833 [GTK][CMake] Build with -fno-rtti
1834 https://bugs.webkit.org/show_bug.cgi?id=130261
1836 Reviewed by Martin Robinson.
1838 * Source/cmake/OptionsCommon.cmake: List the -fno-exceptions, -fno-strict-aliasing
1839 and -fno-rtti options in the global CMAKE_C_FLAGS and CMAKE_CXX_FLAGS (-fno-rtti
1840 is only listed in the latter). Replace -std=gnu++0x with the official -std=c++11 option.
1841 * Source/cmake/WebKitHelpers.cmake: Stop -fno-exceptions and -fno-strict-aliasing
1842 from being set through the WEBKIT_SET_EXTRA_COMPILER_FLAGS macro, they are now listed
1843 in CMAKE_C_FLAGS and CMAKE_CXX_FLAGS.
1844 * Source/cmake/gtest/CMakeLists.txt: Build GTest code with GTEST_HAS_RTTI macro defined to 0.
1846 2014-03-16 Brendan Long <b.long@cablelabs.com>
1848 [GStreamer] CMake doesn't find the include path for gstreamer-base
1849 https://bugs.webkit.org/show_bug.cgi?id=130098
1851 Reviewed by Philippe Normand.
1853 * Source/cmake/FindGStreamer.cmake: Look for a header in gstreamer-base instead of looking for gst/gst.h twice.
1855 2014-03-14 Maciej Stachowiak <mjs@apple.com>
1857 Replace "Apple Computer, Inc." with "Apple Inc." in copyright headers
1858 https://bugs.webkit.org/show_bug.cgi?id=130276
1859 <rdar://problem/16266927>
1861 Reviewed by Simon Fraser.
1863 * ManualTests/NPN_Invoke/Info.plist:
1864 * ManualTests/NPN_Invoke/main.c:
1865 * ManualTests/accessibility/resources/AppletTest.java:
1867 2014-03-14 Zan Dobersek <zdobersek@igalia.com>
1869 [CMake] Remove -fno-tree-sra workaround for GCC 4.5
1870 https://bugs.webkit.org/show_bug.cgi?id=130258
1872 Reviewed by Martin Robinson.
1874 GCC compilers 4.7 and later are supported, so there's no need for disabling
1875 the -ftree-sra optimization which was causing problems when enabled on GCC 4.5.
1877 * Source/cmake/WebKitHelpers.cmake:
1879 2014-03-14 Landry Breuil <landry@openbsd.org>
1881 Add autotools boilerplate for proper os defines on OpenBSD/NetBSD/DragonFly
1882 https://bugs.webkit.org/show_bug.cgi?id=129966
1884 Reviewed by Andreas Kling.
1886 * Source/autotools/CheckSystemAndBasicDependencies.m4:
1887 * Source/autotools/SetupAutomake.m4:
1889 2014-03-13 Mario Sanchez Prada <mario.prada@samsung.com>
1891 [CMake] Failure to link with older installations of WebP
1892 https://bugs.webkit.org/show_bug.cgi?id=130195
1894 Reviewed by Gustavo Noronha Silva.
1896 Fix the issue by using a temporary variable as the output parameter
1897 to check_include_files(), setting WEBP_FOUND accordingly later.
1899 * Source/cmake/FindWebP.cmake: Avoid reusing the WEBP_FOUND
1900 variable in check_include_files(), as it will lead to misleading
1901 results (will always be FALSE). Use a temporary variable instead
1902 and explicitly set WEBP_FOUND to TRUE later if needed.
1904 2014-03-12 Martin Robinson <mrobinson@igalia.com>
1906 [CMake] Changes to the bindings generator Perl modules do not trigger regeneration of bindings
1907 https://bugs.webkit.org/show_bug.cgi?id=130170
1909 Reviewed by Daniel Bates.
1911 * Source/cmake/WebKitMacros.cmake: Add the Perl modules used in script generation to the dependency
1912 list. We must check whether or not the specific one exists first, because the InjectedBundle uses a
1913 fake "TestRunner" generator.
1915 2014-03-12 Carlos Garcia Campos <cgarcia@igalia.com>
1917 [GTK][CMAKE] Remove compile warnings about GTK+ deprecated API
1918 https://bugs.webkit.org/show_bug.cgi?id=130014
1920 Reviewed by Martin Robinson.
1922 Set GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_6.
1924 * Source/cmake/OptionsGTK.cmake:
1925 * Source/cmakeconfig.h.cmake:
1927 2014-03-12 Martin Robinson <mrobinson@igalia.com>
1929 [GTK][CMAKE] Too verbose build output
1930 https://bugs.webkit.org/show_bug.cgi?id=130076
1932 Reviewed by Carlos Garcia Campos.
1934 * Source/cmake/OptionsGTK.cmake: Generate a script which does the actual build. This
1935 works around an issue where cmake --build doesn't support ninja's pretty printing.
1937 2014-03-10 Mario Sanchez Prada <mario.prada@samsung.com>
1939 [GTK] Add support for Geoclue2
1940 https://bugs.webkit.org/show_bug.cgi?id=120185
1942 Reviewed by Carlos Garcia Campos.
1944 Patch by Anton Obzhirov <a.obzhirov@samsung.com> and Mario Sanchez Prada <mario.prada@samsung.com>
1946 Add support for Geoclue2 using autotools.
1948 * Source/autotools/FindDependencies.m4: Add support for handling
1949 both Geoclue 1.0 and 2.0.
1950 * Source/autotools/PrintBuildConfiguration.m4: Print the version
1951 of geoclue that is being used.
1952 * Source/autotools/SetupAutoconfHeader.m4: Define GEOCLUE_API_VERSION_2.
1953 * Source/autotools/SetupAutomake.m4: Likewise, for AM_CONDITIONAL.
1954 * Source/autotools/Versions.m4: Added minimum required version for Geoclue2.
1956 Add support for Geoclue2 using CMake.
1958 * Source/cmake/FindGeoClue2.cmake: Added.
1959 * Source/cmake/OptionsGTK.cmake: Add support for handling Geoclue 1.0 and 2.0.
1960 * Source/cmakeconfig.h.cmake: Define WTF_USE_GEOCLUE2.
1962 2014-03-10 Martin Robinson <mrobinson@igalia.com>
1964 [GTK][CMAKE] gtk-doc HTML documentation is generated by default when building with CMake
1965 https://bugs.webkit.org/show_bug.cgi?id=130016
1967 Reviewed by Carlos Garcia Campos.
1969 * Source/PlatformGTK.cmake: Add two gtkdoc targets, one which builds HTML and one which
1970 doesn't. Add the non-HTML version to the default target, but not the HTML version. The
1971 HTML version will still run when building the distribution tarball.
1973 2014-03-10 Martin Robinson <mrobinson@igalia.com>
1975 [GTK] [CMake] Clean up library linking
1976 https://bugs.webkit.org/show_bug.cgi?id=129782
1978 Reviewed by Philippe Normand.
1980 * Source/cmake/OptionsGTK.cmake: Add a macro to wrap all libraries in a list with --whole-archive
1981 so that unused symbols are not dropped. This is useful when building up shared libraries
1982 from convenience libraries.
1984 2014-03-08 Landry Breuil <landry@openbsd.org>
1986 Don't check for shm_open on librt on OpenBSD, lib doesnt exist.
1987 https://bugs.webkit.org/show_bug.cgi?id=129973
1989 Reviewed by Martin Robinson.
1991 * Source/autotools/FindDependencies.m4:
1993 2014-03-06 Anders Carlsson <andersca@apple.com>
1995 Build WebKit2 before building WebKit
1996 https://bugs.webkit.org/show_bug.cgi?id=129831
1997 <rdar://problem/15920020>
1999 Reviewed by Dan Bernstein.
2002 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
2003 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
2005 2014-03-06 Commit Queue <commit-queue@webkit.org>
2007 Unreviewed, rolling out r165193.
2008 http://trac.webkit.org/changeset/165193
2009 https://bugs.webkit.org/show_bug.cgi?id=129823
2011 Not specifying libc++ as the stdlib for Clang through CXXFLAGS
2012 env confuses libtool (Requested by zdobersek on #webkit).
2014 * Source/autotools/SetupCompilerFlags.m4:
2016 2014-03-06 Zan Dobersek <zdobersek@igalia.com>
2018 [GTK][Autotools] Default to libc++ when compiling with Clang
2019 https://bugs.webkit.org/show_bug.cgi?id=129798
2021 Reviewed by Anders Carlsson.
2023 * Source/autotools/SetupCompilerFlags.m4: Default to using libc++ when compiling with the Clang
2024 compiler. This is still overridable if -stdlib=* flag was set through CXXFLAGS, in case people
2025 would for some reason still prefer libstdc++ (i.e. on setups where a functional libc++ is not yet available).
2027 2014-03-05 Martin Robinson <mrobinson@igalia.com>
2029 [CMake] Ninja generator builds fail with "Argument list too long"
2030 https://bugs.webkit.org/show_bug.cgi?id=129771
2032 Reviewed by Daniel Bates.
2034 * Source/cmake/OptionsCommon.cmake: Work around a bug in the Ninja CMake generator,
2035 by forcing the use of response files.
2037 2014-03-05 Ryuan Choi <ryuan.choi@samsung.com>
2039 [CMake] Use thin archives if building on Linux for non-shared-core debug builds
2040 https://bugs.webkit.org/show_bug.cgi?id=108330
2042 Reviewed by Martin Robinson.
2044 In order to get non-shared debug builds, this patch applied T option for
2045 thin archives to the flags passed to ar when cmake based ports build on linux.
2046 In addition, applied u option which avoids adding a file twice.
2048 * Source/cmake/OptionsCommon.cmake: Moved archive options from OptionsGTK.cmake.
2049 * Source/cmake/OptionsEfl.cmake:
2050 Removed error messages for non-shared-core debug builds.
2051 * Source/cmake/OptionsGTK.cmake: Moved archive options to OptionsCommon.cmake.
2053 2014-03-04 Zan Dobersek <zdobersek@igalia.com>
2055 [GTK] Build the Udis86 disassembler
2056 https://bugs.webkit.org/show_bug.cgi?id=129679
2058 Reviewed by Michael Saboff.
2060 * GNUmakefile.am: Add the Udis86_nosources variable.
2061 * Source/cmake/OptionsGTK.cmake: Enable the Udis86 disassembler.
2063 2014-03-04 Martin Robinson <mrobinson@igalia.com>
2065 [GTK] Simplify the GObject DOM bindings API break check into one step
2066 https://bugs.webkit.org/show_bug.cgi?id=129571
2068 Reviewed by Carlos Garcia Campos.
2070 * Source/PlatformGTK.cmake: We don't need to run the API break check before gtkdoc generation.
2071 Add the check to 'make check.'
2073 2014-03-04 Martin Robinson <mrobinson@igalia.com>
2075 [GTK][CMake] ENABLE_NAVIGATOR_CONTENT_UTILS is mistakenly enabled for the CMake build
2076 https://bugs.webkit.org/show_bug.cgi?id=129502
2078 Reviewed by Carlos Garcia Campos.
2080 * Source/cmake/OptionsGTK.cmake: Disable the option for GTK+.
2082 2014-03-03 Jozsef Berta <jberta.u-szeged@partner.samsung.com>
2084 [cmake] *Names.cpp file should be regenerated after touching StaticString.pm
2085 https://bugs.webkit.org/show_bug.cgi?id=129031
2087 Reviewed by Csaba Osztrogonác.
2089 * Source/cmake/WebKitMacros.cmake: Added a call for make_names.pm dependencies in GENERATE_FONT_NAMES and GENERATE_DOM_NAMES macros.
2091 2014-03-03 Carlos Garcia Campos <cgarcia@igalia.com>
2093 [GTK] WebKit2WebExtension GIR can't be used in vala
2094 https://bugs.webkit.org/show_bug.cgi?id=127179
2096 Reviewed by Martin Robinson.
2098 Add a different pkg-config file for the web extensions API.
2100 * Source/cmake/OptionsGTK.cmake:
2103 2014-03-02 Dirkjan Ochtman <d.ochtman@activevideo.com>
2105 Support ENABLE_ENCRYPTED_MEDIA in cmake builds
2106 https://bugs.webkit.org/show_bug.cgi?id=129575
2108 Reviewed by Philippe Normand.
2110 * Source/cmake/OptionsEfl.cmake:
2111 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2112 * Source/cmake/OptionsGTK.cmake:
2113 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2114 * Source/cmake/WebKitFeatures.cmake:
2115 Enabled ENABLE_ENCRYPTED_MEDIA{,_V2} usage.
2116 * Source/cmakeconfig.h.cmake:
2117 Added ENABLE_ENCRYPTED_MEDIA{,_V2} flags.
2119 2014-02-27 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
2121 Enable support of X-Content-Type-Options: nosniff header for EFL
2122 https://bugs.webkit.org/show_bug.cgi?id=128673
2124 Reviewed by Gyuyoung Kim.
2126 * Source/cmake/OptionsEfl.cmake:
2127 Enabled NOSNIFF feature flag for EFL.
2129 2014-02-27 Koop Mast <kwm@FreeBSD.org>
2131 Fallback on checking for libz manualy if zlib.pc isn't available.
2132 https://bugs.webkit.org/show_bug.cgi?id=127061
2134 Reviewed by Gustavo Noronha Silva.
2136 * Source/autotools/FindDependencies.m4:
2138 2014-02-25 Sergio Villar Senin <svillar@igalia.com>
2140 [CSS Grid Layout] Add ENABLE flag
2141 https://bugs.webkit.org/show_bug.cgi?id=129153
2143 Reviewed by Simon Fraser.
2145 Added the ENABLE_CSS_GRID_LAYOUT feature flag to the cmake and
2146 autotools build systems. The feature is disabled by default for
2149 * Source/autotools/SetupWebKitFeatures.m4:
2150 * Source/cmake/OptionsEfl.cmake:
2151 * Source/cmake/OptionsGTK.cmake:
2152 * Source/cmake/WebKitFeatures.cmake:
2153 * Source/cmakeconfig.h.cmake:
2155 2014-02-24 Martin Robinson <mrobinson@igalia.com>
2157 [GTK] generate-gtkdoc should not generate documentation for source files for unbuilt source files
2158 https://bugs.webkit.org/show_bug.cgi?id=128417
2160 Reviewed by Carlos Garcia Campos.
2162 * Source/cmake/OptionsGTK.cmake: Define the paths to the pkgconfig files here, so that they
2163 may one day be used in the webkitdom config file generation.
2165 2014-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2167 [EFL][CMake] Fix javascriptcore test failings by the jsCStack branch merge
2168 https://bugs.webkit.org/show_bug.cgi?id=128961
2170 Reviewed by Ryosuke Niwa.
2172 Javascriptcore test on EFL port has been broken since the jsCStack branch merge.
2173 For now we can fix almost tests by using "-fno-tree-dce option". Unfortunately,
2174 EFL port needs not to check "uninitialized" build warning as error in order to
2175 adjust the option to EFL port. This patch don't take it as error temporarily.
2177 * Source/cmake/OptionsEfl.cmake:
2178 * Source/cmake/WebKitHelpers.cmake:
2180 2014-02-16 Martin Robinson <mrobinson@igalia.com>
2182 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
2183 https://bugs.webkit.org/show_bug.cgi?id=128434
2185 Reviewed by Anders Carlsson.
2187 * Source/cmake/OptionsGTK.cmake: Add -fno-omit-frame-pointer to the GTK+ CMake
2188 port as well as -fno-tree-dce, like it is used in the autotools build.
2190 2014-02-17 ChangSeok Oh <changseok.oh@collabora.com>
2192 [GTK] MEDIA_CONTROLS_SCRIPT depends on VIDEO_TRACK
2193 https://bugs.webkit.org/show_bug.cgi?id=128799
2195 Reviewed by Philippe Normand.
2197 MEDIA_CONTROLS_SCRIPT has a dependency on VIDEO_TRACK. So it causes a build break
2198 if building with autotools. cmake system has enabled it as default. So I propose
2199 enabling VIDEO_TRACK as well.
2201 * Source/autotools/SetupWebKitFeatures.m4:
2203 2014-02-14 Commit Queue <commit-queue@webkit.org>
2205 Unreviewed, rolling out r164090.
2206 http://trac.webkit.org/changeset/164090
2207 https://bugs.webkit.org/show_bug.cgi?id=128807
2209 It broke the EFL build (Requested by Ossy on #webkit).
2211 * Source/cmake/OptionsCommon.cmake:
2212 * Source/cmake/OptionsEfl.cmake:
2214 2014-02-09 Martin Robinson <mrobinson@igalia.com>
2216 [GTK] [CMake] JavaScriptCore crashes in JSC::eval
2217 https://bugs.webkit.org/show_bug.cgi?id=128434
2219 Extend a fix for EFL to all ports that use GCC. Also include further fixes
2220 that were applied only to the autotools build.
2222 Reviewed by Gyuyoung Kim.
2224 * Source/cmake/OptionsCommon.cmake: Add -fno-omit-frame-pointer to all ports as well
2225 as -fno-tree-dce, which is necessary for GTK+.
2226 * Source/cmake/OptionsEfl.cmake: The GCC flag additions are now in the common options file.
2228 2014-02-04 Gustavo Noronha Silva <gns@gnome.org>
2230 [GTK][CMake] Generate GObject DOM bindings .symbols files
2231 https://bugs.webkit.org/show_bug.cgi?id=126210
2233 Reviewed by Martin Robinson.
2235 * Source/PlatformGTK.cmake: add checking DOM bindings API as a dependency
2236 for documentation generation.
2238 2014-02-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
2240 [GTK] MEDIA_CONTROLS_SCRIPT support
2241 https://bugs.webkit.org/show_bug.cgi?id=123097
2243 Reviewed by Jer Noble.
2245 Part of the Autotools and CMake structure to build the media
2248 * Source/autotools/SetupWebKitFeatures.m4: Activated the media
2249 controls script by default.
2250 * Source/cmake/OptionsGTK.cmake: Activated the media controls
2252 * Source/cmake/WebKitFeatures.cmake: Created the option to
2253 activate the controls script.
2254 * Source/cmakeconfig.h.cmake: Created the define template the the
2255 media controls script.
2257 2014-02-12 Zan Dobersek <zdobersek@igalia.com>
2259 [GDB] Add .gdbinit to the list of files ignored by Git
2260 https://bugs.webkit.org/show_bug.cgi?id=128455
2262 Reviewed by Anders Carlsson.
2264 * .gitignore: Ignore the .gdbinit file which can be used to perform WebKit-specific GDB initialization
2265 when the debugger is launched in the repository's root directory. Also remove a Chromium-specific comment
2266 that covers already removed entries.
2268 2014-02-11 Oliver Hunt <oliver@apple.com>
2270 Make it possible to implement JS builtins in JS
2271 https://bugs.webkit.org/show_bug.cgi?id=127887
2273 Reviewed by Michael Saboff.
2276 * Source/cmake/gtest/CMakeLists.txt:
2278 2014-02-12 Ryan Lortie <desrt@desrt.ca>
2280 'ar T' is not portable and breaks the build on FreeBSD
2281 https://bugs.webkit.org/show_bug.cgi?id=128596
2283 Reviewed by Gustavo Noronha Silva.
2285 Create thin archives only if we are using GNU ar.
2287 * Source/autotools/SetupLibtool.m4:
2289 2014-02-10 Krzysztof Wolanski <k.wolanski@samsung.com>
2291 Add the CSS_SHAPE_INSIDE to CMake feature list
2292 https://bugs.webkit.org/show_bug.cgi?id=128530
2294 Reviewed by Gyuyoung Kim.
2296 CSS_SHAPE_INSIDE flag was added in r163333,
2297 this patch is adding this flag to CMake feature list.
2299 * Source/cmake/WebKitFeatures.cmake:
2300 * Source/cmakeconfig.h.cmake:
2302 2014-02-09 Carlos Garnacho <carlosg@gnome.org>
2304 [GTK] Enable touch features
2305 https://bugs.webkit.org/show_bug.cgi?id=98931
2307 Reviewed by Carlos Garcia Campos.
2309 * Source/autotools/SetupWebKitFeatures.m4:
2310 * Source/cmake/OptionsGTK.cmake: set ENABLE_TOUCH_EVENTS to 1 if building with GTK+.
2312 2014-02-06 Andreas Kling <akling@apple.com>
2314 Remove unused ENABLE(REPAINT_THROTTLING) flag.
2315 <https://webkit.org/b/128329>
2317 Reviewed by Antti Koivisto.
2319 * Source/cmake/WebKitFeatures.cmake:
2320 * Source/cmakeconfig.h.cmake:
2322 2014-02-06 Joseph Pecoraro <pecoraro@apple.com>
2324 [iOS] make should build WebKit2
2325 https://bugs.webkit.org/show_bug.cgi?id=128351
2327 Reviewed by Daniel Bates.
2331 2014-02-05 Andreas Kling <akling@apple.com>
2333 Remove ENABLE(DIRECTORY_UPLOAD).
2334 <https://webkit.org/b/128275>
2336 Rubber-stamped by Ryosuke Niwa.
2338 * Source/autotools/SetupWebKitFeatures.m4:
2339 * Source/cmake/WebKitFeatures.cmake:
2341 2014-02-05 Csaba Osztrogonác <ossy@webkit.org>
2343 Remove ENABLE(SVG) guards
2344 https://bugs.webkit.org/show_bug.cgi?id=127991
2346 Reviewed by Sam Weinig.
2348 * Source/autotools/FindDependencies.m4:
2349 * Source/autotools/PrintBuildConfiguration.m4:
2350 * Source/autotools/ReadCommandLineArguments.m4:
2351 * Source/autotools/SetupAutomake.m4:
2352 * Source/autotools/SetupWebKitFeatures.m4:
2353 * Source/cmake/OptionsEfl.cmake:
2354 * Source/cmake/OptionsGTK.cmake:
2355 * Source/cmake/WebKitFeatures.cmake:
2356 * Source/cmakeconfig.h.cmake:
2358 2014-02-04 Andreas Kling <akling@apple.com>
2360 Remove <iframe seamless> support.
2361 <https://webkit.org/b/128213>
2363 Rubber-stamped by Antti Koivisto.
2365 * Source/autotools/SetupWebKitFeatures.m4:
2366 * Source/cmake/WebKitFeatures.cmake:
2367 * Source/cmakeconfig.h.cmake:
2369 2014-01-31 Benjamin Poulain <bpoulain@apple.com>
2371 Remove LEGACY_VIEWPORT_ADAPTION
2372 https://bugs.webkit.org/show_bug.cgi?id=128028
2374 Reviewed by Anders Carlsson.
2376 * Source/cmake/WebKitFeatures.cmake:
2377 * Source/cmakeconfig.h.cmake:
2379 2014-01-31 Oliver Hunt <oliver@apple.com>
2381 Rollout r163195 and related patches
2384 * Source/cmake/gtest/CMakeLists.txt:
2386 2014-01-29 Oliver Hunt <oliver@apple.com>
2388 Make it possible to implement JS builtins in JS
2389 https://bugs.webkit.org/show_bug.cgi?id=127887
2391 Reviewed by Michael Saboff.
2395 * Source/cmake/gtest/CMakeLists.txt:
2397 2014-01-30 Martin Robinson <mrobinson@igalia.com>
2399 [GTK] [CMake] Add support for building against GTK+ 2
2400 https://bugs.webkit.org/show_bug.cgi?id=127959
2402 Reviewed by Anders Carlsson.
2404 * Source/cmake/OptionsGTK.cmake: Add a new option to use GTK 2 and make a variable holding the
2405 library API version. When using GTK 2 do not build WebKit 2.
2407 2014-01-30 Martin Robinson <mrobinson@igalia.com>
2409 [GTK] [CMake] Add a "make dist" target
2410 https://bugs.webkit.org/show_bug.cgi?id=116378
2412 Reviewed by Gustavo Noronha Silva.
2414 * Source/PlatformGTK.cmake: A CMake support for executing the make-dist
2415 script and then turning the tarfile into a LZMA compressed file.
2417 2014-01-30 Zan Dobersek <zdobersek@igalia.com>
2419 [GTK] Only disable -ftree-dce optimization when compiling with GCC
2420 https://bugs.webkit.org/show_bug.cgi?id=127911
2422 Reviewed by Carlos Garcia Campos.
2424 * Source/autotools/SetupAutomake.m4: Define the COMPILER_GCC and COMPILER_CLANG Automake macros.
2425 These can be used when compiler-specific flags have to be used. The latter one is not actually needed
2426 at the moment, but is added for the sake of completeness.
2428 2014-01-30 Csaba Osztrogonác <ossy@webkit.org>
2430 [EFL] Fix the regression caused by the jsCStack branch merge
2431 https://bugs.webkit.org/show_bug.cgi?id=127898
2433 Reviewed by Zoltan Herczeg.
2435 * Source/cmake/OptionsEfl.cmake: Build with -fno-omit-frame-pointer.
2437 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
2439 Remove ENABLE(JAVASCRIPT_DEBUGGER) leftovers
2440 https://bugs.webkit.org/show_bug.cgi?id=127845
2442 Reviewed by Joseph Pecoraro.
2444 * Source/autotools/SetupWebKitFeatures.m4:
2446 2014-01-29 Csaba Osztrogonác <ossy@webkit.org>
2448 Remove ENABLE(JAVASCRIPT_DEBUGGER) guards
2449 https://bugs.webkit.org/show_bug.cgi?id=127840
2451 Reviewed by Mark Lam.
2453 * Source/cmake/WebKitFeatures.cmake:
2454 * Source/cmakeconfig.h.cmake:
2456 2014-01-25 Darin Adler <darin@apple.com>
2458 Get rid of ICU_UNICODE and WCHAR_UNICODE remnants
2459 https://bugs.webkit.org/show_bug.cgi?id=127623
2461 Reviewed by Anders Carlsson.
2463 * Source/cmake/OptionsEfl.cmake: Removed ICU_UNICODE and WCHAR_UNICODE flags.
2464 * Source/cmake/OptionsGTK.cmake: Ditto.
2465 * Source/cmake/OptionsWinCE.cmake: Ditto.
2467 2014-01-23 Max Vujovic <mvujovic@adobe.com>
2469 Remove CSS Custom Filters code and tests
2470 https://bugs.webkit.org/show_bug.cgi?id=127382
2472 Reviewed by Simon Fraser.
2474 * Source/autotools/FindDependencies.m4:
2475 * Source/autotools/SetupWebKitFeatures.m4:
2476 * Source/cmake/WebKitFeatures.cmake:
2477 * Source/cmakeconfig.h.cmake:
2479 2014-01-22 Martin Robinson <mrobinson@igalia.com>
2481 [GTK][CMake] Add support for building the NetworkProcess
2482 https://bugs.webkit.org/show_bug.cgi?id=127195
2484 Reviewed by Daniel Bates.
2486 * Source/cmake/OptionsGTK.cmake: Turn on the network process and give it
2487 a name like the WebProcess.
2489 2014-01-20 Ryuan Choi <ryuan.choi@samsung.com>
2491 [CMAKE] Remove Nix from CMake scripts
2492 https://bugs.webkit.org/show_bug.cgi?id=127264
2494 Reviewed by Anders Carlsson.
2497 * Source/CMakeLists.txt:
2498 * Source/cmake/FindEGL.cmake:
2499 * Source/cmake/OptionsCommon.cmake:
2501 2014-01-18 Anders Carlsson <andersca@apple.com>
2503 Remove ENABLE_THREADED_HTML_PARSER defines everywhere
2504 https://bugs.webkit.org/show_bug.cgi?id=127225
2506 Reviewed by Andreas Kling.
2508 This concludes the removal of over 8.8 million lines of threaded parser code.
2510 * Source/autotools/SetupWebKitFeatures.m4:
2511 * Source/cmake/WebKitFeatures.cmake:
2512 * Source/cmakeconfig.h.cmake:
2514 2014-01-18 Lauro Neto <lauro.neto@openbossa.org>
2516 Remove Nix files from WebCore
2517 https://bugs.webkit.org/show_bug.cgi?id=127176
2519 Reviewed by Anders Carlsson.
2521 * Source/cmake/OptionsNix.cmake: Removed.
2523 2014-01-18 Zan Dobersek <zdobersek@igalia.com>
2525 [GTK] Bump the minimum required Clang version to 3.3
2526 https://bugs.webkit.org/show_bug.cgi?id=127178
2528 Reviewed by Martin Robinson.
2530 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require Clang 3.3 or later when using the Clang compiler to
2531 build the GTK port. Building with Clang 3.2 doesn't work anymore and there's no point in fixing that, as we should
2532 support the latest two versions of Clang (3.3 and 3.4), just like we do with GCC (4.7 and 4.8).
2534 2014-01-14 Dan Bernstein <mitz@apple.com>
2536 Only use color in make output when it’s going to a terminal.
2538 Reviewed by Mark Rowe.
2542 2014-01-13 Martin Robinson <mrobinson@igalia.com>
2544 [CMake] Mark all dependency include paths and libraries as advanced variables
2545 https://bugs.webkit.org/show_bug.cgi?id=126504
2547 Reviewed by Daniel Bates.
2549 * Source/cmake/FindATK.cmake: Mark result variable as advanced.
2550 * Source/cmake/FindCairo.cmake: Ditto.
2551 * Source/cmake/FindEGL.cmake: Ditto.
2552 * Source/cmake/FindEnchant.cmake: Ditto.
2553 * Source/cmake/FindGLIB.cmake: Ditto.
2554 * Source/cmake/FindGStreamer.cmake: Ditto.
2555 * Source/cmake/FindHarfBuzz.cmake: Ditto.
2556 * Source/cmake/FindLibSoup.cmake: Ditto.
2558 2014-01-13 Martin Robinson <mrobinson@igalia.com>
2560 [GTK][CMake] Add a 'check' target
2561 https://bugs.webkit.org/show_bug.cgi?id=126770
2563 Reviewed by Daniel Bates.
2565 * Source/PlatformGTK.cmake: Add a 'check' target that calls run-gtk-tests.
2567 2014-01-13 Carlos Garcia Campos <cgarcia@igalia.com>
2569 Unreviewed. Update NEWS and Versions.m4 for 2.3.4 release.
2571 * Source/autotools/Versions.m4: Bump version numbers.
2573 2014-01-12 Sergio Correia <sergio.correia@openbossa.org>
2575 [EFL][WK2] Make API tests work again
2576 https://bugs.webkit.org/show_bug.cgi?id=126769
2578 Reviewed by Gyuyoung Kim.
2580 The EFL and WK2 test binaries are currently being generated at *TestWebKitAPI/
2581 [E]WebKit2, respectively, and this causes problems because the logic to find
2582 where WebProcess is to look in the same directory of the running process and
2583 then proceed to use LIBEXECDIR (typically /usr/loca/bin).
2585 This patch introduces a WEBKIT_EXEC_PATH environment variable, inspired in the
2586 Gtk port, which allows us to look for WebProcess initially in this directory,
2589 * Source/cmake/OptionsEfl.cmake: Define WEBKIT_EXEC_PATH, to be used by
2592 2014-01-11 Dan Bernstein <mitz@apple.com>
2594 [Mac] xcodebuild color output is suppressed when using make
2595 https://bugs.webkit.org/show_bug.cgi?id=126815
2597 Reviewed by Anders Carlsson.
2599 WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
2600 format its output with color and emphasis.
2602 * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
2603 xcodebuild limitations, this restores some of the formatting, but not all of it.
2605 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
2607 Remove the BlackBerry port from trunk
2608 https://bugs.webkit.org/show_bug.cgi?id=126715
2610 Reviewed by Anders Carlsson.
2613 * Source/cmake/OptionsCommon.cmake:
2615 2014-01-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
2617 [EFL][JSC] Enable udis86 disassembler on efl.
2618 https://bugs.webkit.org/show_bug.cgi?id=125502
2620 Reviewed by Michael Saboff.
2622 Enable udis86 disassembler on efl and fix build warnings.
2624 * Source/cmake/OptionsEfl.cmake:
2625 Enable udis86 disassembler.
2627 2014-01-10 Benjamin Poulain <bpoulain@apple.com>
2629 Remove the BlackBerry port from trunk
2630 https://bugs.webkit.org/show_bug.cgi?id=126715
2632 Reviewed by Anders Carlsson.
2636 2014-01-09 Benjamin Poulain <bpoulain@apple.com>
2638 Remove the BlackBerry files outside WebCore
2639 https://bugs.webkit.org/show_bug.cgi?id=126715
2641 Reviewed by Anders Carlsson.
2643 * ManualTests/blackberry: Removed.
2644 * Source/cmake/OptionsBlackBerry.cmake: Removed.
2646 2014-01-08 Martin Robinson <mrobinson@igalia.com>
2648 [GTK] [CMake] Specify the executable and library output locations in the build
2649 https://bugs.webkit.org/show_bug.cgi?id=126671
2651 Reviewed by Gustavo Noronha Silva.
2653 * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
2655 2014-01-08 Dániel Bátyai <dbatyai.u-szeged@partner.samsung.com>
2657 [EFL] Make FTL buildable
2658 https://bugs.webkit.org/show_bug.cgi?id=125777
2660 Reviewed by Csaba Osztrogonác.
2662 * Source/cmake/OptionsEfl.cmake:
2663 * Source/cmakeconfig.h.cmake:
2665 2014-01-08 Alberto Garcia <berto@igalia.com>
2667 REGRESSION(r160304): [GTK] Disable libtool fast install
2668 https://bugs.webkit.org/show_bug.cgi?id=126381
2670 Reviewed by Gustavo Noronha Silva.
2672 Don't disable the libtool fast-install mode unconditionally by
2675 If the fast-install mode is disabled, binaries are generated ready
2676 to use the libraries directly from the build tree. If we use the
2677 GNU linker, those binaries are then relinked when they are
2680 However, libtool fails to do it properly when an installation
2681 prefix is set with DESTDIR, and ends up installing the libtool
2682 wrappers instead of the actual binaries.
2684 * Source/autotools/SetupLibtool.m4:
2686 2014-01-07 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
2688 Unreviewed GTK/CMake build fix: use the correct location for docs-build.stamp
2689 in output and dependencies declarations, so docs are not built needlessly
2692 * Source/PlatformGTK.cmake:
2694 2014-01-04 Carlos Garcia Campos <cgarcia@igalia.com>
2696 [GTK] Move all GTK/GObject unit tests to Tools/TestWebKitAPI
2697 https://bugs.webkit.org/show_bug.cgi?id=126342
2699 Reviewed by Gustavo Noronha Silva.
2701 * GNUmakefile.am: Remove unused variable.
2702 * Source/PlatformGTK.cmake: No longer include the old unit tests directories.
2704 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
2706 [GTK] configure errors out when building with libc++
2707 https://bugs.webkit.org/show_bug.cgi?id=126431
2709 Reviewed by Martin Robinson.
2711 Ease up the Clang and libstdc++ combination test to only fail if libstdc++ < 4.8.1 is actually used.
2712 This allows for libc++ to be used as well. The test is moved into SetupCompilerFlags.m4 and is done
2713 after the CXXFLAGS variable is properly set up, that is when all the C++ compiler options are determined.
2715 * Source/autotools/CheckSystemAndBasicDependencies.m4:
2716 * Source/autotools/SetupCompilerFlags.m4:
2718 2014-01-06 Martin Robinson <mrobinson@igalia.com>
2720 [CMake] [GTK] Fix the build for the WebKitGTK+ developer configuration
2721 https://bugs.webkit.org/show_bug.cgi?id=126505
2723 Reviewed by Gustavo Noronha Silva.
2725 * Source/cmake/FindGLIB.cmake: Add support for finding the gio-unix include directory location.
2726 * Source/cmake/FindGUdev.cmake: Added.
2727 * Source/cmake/FindGeoClue.cmake: Added.
2728 * Source/cmake/OptionsGTK.cmake: When gamepad is enabled look for gio-unix and GUdev. When
2729 geolocation is enabled look for GeoClue.
2731 2014-01-06 Zan Dobersek <zdobersek@igalia.com>
2733 [GTK] Use libc++ for C++11 on darwin
2734 https://bugs.webkit.org/show_bug.cgi?id=126325
2736 Reviewed by Martin Robinson.
2738 * Source/autotools/SetupCompilerFlags.m4: Don't default to libstdc++ when compiling with Clang.
2739 Instead, the compiler should determine itself what standard library to use, except on Darwin,
2740 where libc++ should be enforced. The standard library of user's choosing can still be enforced
2741 through the CXXFLAGS environment variable.
2743 2014-01-05 Martin Robinson <mrobinson@igalia.com>
2745 [GTK] [CMake] Ensure that the autotools build and the CMake install the same files
2746 https://bugs.webkit.org/show_bug.cgi?id=116379
2748 Reviewed by Gustavo Noronha Silva.
2750 * Source/PlatformGTK.cmake: Install the documentation.
2751 * Source/cmake/OptionsCommon.cmake: Add a LIBEXEC variable for WebKit2 executables, and
2752 don't use the default locations on GTK+. We will get them from the CMake-provided GNU installation
2754 * Source/cmake/OptionsGTK.cmake: Setup the installation variables using the ones provided
2755 by CMake's GNU installation directory support. Fix the definition of DATADIR. Always install
2758 2014-01-05 Carlos Garcia Campos <cgarcia@igalia.com>
2760 [GTK] Stop installing WebKit2 C API headers
2761 https://bugs.webkit.org/show_bug.cgi?id=126489
2763 Reviewed by Martin Robinson.
2767 2014-01-04 Martin Robinson <mrobinson@igalia.com>
2769 [GTK] [CMake] Improve the way we locate gobject-introspection
2770 https://bugs.webkit.org/show_bug.cgi?id=126452
2772 Reviewed by Philippe Normand.
2774 * Source/cmake/FindGObjectIntrospection.cmake: Added.
2775 * Source/cmake/OptionsGTK.cmake: Load the new FindGObjectIntrospection file.
2777 2014-01-04 Martin Robinson <mrobinson@igalia.com>
2779 [GTK] [CMake] Fix the video and audio build
2780 https://bugs.webkit.org/show_bug.cgi?id=126464
2782 Reviewed by Philippe Normand.
2784 * Source/cmake/OptionsGTK.cmake: GStreamer files look for USE(GSTREAMER) and USE(WEBAUDIO_GSTREAMER),
2785 so define those when appropriate. Web audio is one by default in autotools, so turn it on for cmake
2788 2014-01-03 Martin Robinson <mrobinson@igalia.com>
2790 [CMake] The forwarding headers generated by WebKitMacros.m4 are incompatible with the headers generated by generate-forwarding-headers.pl
2791 https://bugs.webkit.org/show_bug.cgi?id=126361
2793 Reviewed by Philippe Normand.
2795 Make the forwarding headers generated by WebKitMacros.m4 compatible with the headers
2796 generated by the WebKit2 forwarding headers generation script.
2798 * Source/cmake/WebKitMacros.cmake: Try to convert absolute paths in the forwarding headers
2799 to ones that are relative to the Source directory.
2801 2014-01-02 Carlos Garcia Campos <cgarcia@igalia.com>
2803 REGRESSION(r160304): [GTK] Disable libtool fast install
2804 https://bugs.webkit.org/show_bug.cgi?id=126381
2806 Reviewed by Martin Robinson.
2808 After r160304 we are building some of our binaries that are
2809 installed with the -no-fast-install ld flag. This makes that the
2810 binaries are installed with the source code path hardcoded in
2811 binary RPATH. Disabling fast install globally, the libtool script
2812 always relinks the binaries right before being installed.
2814 * Source/autotools/SetupLibtool.m4: Add AC_DISABLE_FAST_INSTALL.
2816 2014-01-02 Jaehun Lim <ljaehun.lim@samsung.com>
2818 [CMake][EFL] Fix some typos in OptionsEfl.cmake
2819 https://bugs.webkit.org/show_bug.cgi?id=126376
2821 Reviewed by Gyuyoung Kim.
2823 * Source/cmake/WebKitFeatures.cmake: Correct a wrong word and remove comma(,).
2825 2013-12-30 Martin Robinson <mrobinson@igalia.com>
2827 [CMake] [GTK] Add support for GObject introspection
2828 https://bugs.webkit.org/show_bug.cgi?id=126162
2830 Reviewed by Daniel Bates.
2832 * Source/PlatformGTK.cmake: Add a 'gir' target that builds all GIR files.
2833 * Source/cmake/OptionsGTK.cmake: Add a macro for propagating typelib
2834 targets to the Source level of the build.
2836 2013-12-29 Martin Robinson <mrobinson@igalia.com>
2838 [GTK][CMake] Translations must be built
2839 https://bugs.webkit.org/show_bug.cgi?id=125513
2841 Reviewed by Gustavo Noronha Silva.
2843 * Source/PlatformGTK.cmake: Add the po subdirectory.
2845 2013-12-28 Giovanni Campagna <gcampagna@src.gnome.org>
2847 [GTK] Fix release builds with NetworkProcess enabled
2848 https://bugs.webkit.org/show_bug.cgi?id=126247
2850 Reviewed by Carlos Garcia Campos.
2852 * Source/autotools/symbols.filter:
2854 2013-12-26 Martin Robinson <mrobinson@igalia.com>
2856 [GTK] [CMake] Add a production build type
2857 https://bugs.webkit.org/show_bug.cgi?id=126179
2859 Reviewed by Daniel Bates.
2861 * Source/PlatformGTK.cmake: When the API tests are enabled compile the WebKit GObject
2862 API unit tests. The inclusion of these build files was inadvertently removed in an earlier
2864 * Source/cmake/OptionsGTK.cmake: When in production mode turn off all tools and tests and
2865 use the autotools linker script.
2867 2013-12-25 Martin Robinson <mrobinson@igalia.com>
2869 [GTK] [CMake] Properly name the JavaScriptCore library
2870 https://bugs.webkit.org/show_bug.cgi?id=126220
2872 Reviewed by Gustavo Noronha Silva.
2874 * Source/cmake/OptionsGTK.cmake: Set the JSC library name properly.
2876 2013-12-25 Martin Robinson <mrobinson@igalia.com>
2878 [GTK] [CMake] Clean up generated sources directories
2879 https://bugs.webkit.org/show_bug.cgi?id=126216
2881 Reviewed by Gustavo Noronha Silva.
2883 * Source/cmake/OptionsGTK.cmake: Pre-define the main derived sources directories
2884 so that they definitions can be shared easily throughout the build system.
2886 2013-12-23 Jinwoo Song <jinwoo7.song@samsung.com>
2888 [EFL][CMAKE] Case insensitive string comparison of build type
2889 https://bugs.webkit.org/show_bug.cgi?id=126153
2891 Reviewed by Daniel Bates.
2893 Compare CMAKE_BUILD_TYPE with "debug" ignoring case.
2895 * Source/cmake/OptionsEfl.cmake:
2897 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
2899 [GTK] [CMake] Add support for generating gtkdoc
2900 https://bugs.webkit.org/show_bug.cgi?id=116376
2902 Reviewed by Martin Robinson.
2904 * Source/PlatformGTK.cmake: Added. New custom target that depends on a custom command
2905 which calls our generate-gtkdoc script. It uses a docs-build.stamp for simplicity,
2906 like the autotools build.
2908 2013-12-23 Martin Robinson <mrobinson@igalia.com>
2910 [GTK] [CMake] Build the WebKit2 GObject API tests
2911 https://bugs.webkit.org/show_bug.cgi?id=125683
2913 Reviewed by Daniel Bates.
2915 * Source/PlatformGTK.cmake: Load the WebKit2 tests file if necessary.
2916 * Source/cmake/FindATSPI.cmake: Added.
2917 * Source/cmake/OptionsGTK.cmake: Look for AT-SPI, but don't fail if it isn't found.
2919 2013-12-23 Martin Robinson <mrobinson@igalia.com>
2921 [GTK] [CMake] Build the WebKit1 GObject API tests
2922 https://bugs.webkit.org/show_bug.cgi?id=125684
2924 Reviewed by Daniel Bates.
2926 * Source/PlatformGTK.cmake: Added.
2928 2013-12-22 Martin Robinson <mrobinson@igalia.com>
2930 https://bugs.webkit.org/show_bug.cgi?id=125511
2932 [GTK][CMake] libtool-compatible soversion calculation
2933 Reviewed by Gustavo Noronha Silva.
2935 * Source/cmake/OptionsGTK.cmake: Specify the appropriate libtool triples and use
2936 the CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE macro to specify the library-specific
2937 version information.
2938 * Source/cmake/WebKitHelpers.cmake: Add some helpful macros.
2940 2013-12-23 Gustavo Noronha Silva <gns@gnome.org>
2942 [GTK] [CMake] Generate pkg-config files
2943 https://bugs.webkit.org/show_bug.cgi?id=125685
2945 Reviewed by Martin Robinson.
2947 * Source/cmake/OptionsGTK.cmake: set variables used for filling in the values in the
2950 2013-12-23 Carlos Garcia Campos <cgarcia@igalia.com>
2952 [GTK] Build with network process unconditionally
2953 https://bugs.webkit.org/show_bug.cgi?id=126128
2955 Reviewed by Martin Robinson.
2957 * Source/autotools/SetupAutomake.m4: Remove network process
2958 conditional for Makefiles.
2959 * Source/autotools/SetupWebKitFeatures.m4: Remove network process
2962 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
2964 [GTK][CMake] make libjavascriptcoregtk a public shared library again
2965 https://bugs.webkit.org/show_bug.cgi?id=125512
2967 Reviewed by Martin Robinson.
2969 * CMakeLists.txt: make JavaScriptCore always be a shared library for the GTK+ port.
2970 * Source/cmake/WebKitHelpers.cmake: make -fvisibility=hidden not be applied for GTK+,
2971 visibility of some symbols is required for threading to be initialized properly by
2972 WebKit2 processes, and we will rely on a linker script that will be added later on,
2973 for production builds.
2975 2013-12-16 Martin Robinson <mrobinson@igalia.com>
2977 [GTK] [CMake] Add support for building WebKit1
2978 https://bugs.webkit.org/show_bug.cgi?id=116377
2980 Reviewed by Gustavo Noronha Silva.
2982 * Source/cmake/OptionsGTK.cmake: Turn off some features that do not build properly
2983 for WebKit1 and stop using the version script which we haven't implemented yet. Turn
2986 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
2988 [GTK][CMake] Use thin archives if building on Linux, only way to get non-shared-core debug builds
2989 https://bugs.webkit.org/show_bug.cgi?id=125951
2991 Reviewed by Martin Robinson.
2993 * Source/cmake/OptionsGTK.cmake: append T for thin archives to the flags passed to ar,
2994 also use u, which is used in the autotools build (it avoids adding a file twice).
2996 2013-12-18 Gustavo Noronha Silva <gns@gnome.org>
2998 [GTK][CMake] Remove binary size optimizations we do not use in the autotools build
2999 https://bugs.webkit.org/show_bug.cgi?id=125947
3001 Reviewed by Martin Robinson.
3003 * Source/cmake/OptionsGTK.cmake: remove the relevant flags.
3005 2013-12-18 Carlos Garcia Campos <cgarcia@igalia.com>
3007 Unreviewed. Update NEWS and Versions.m4 for 2.3.3 release.
3009 * Source/autotools/Versions.m4: Bump version numbers.
3011 2013-12-12 Martin Robinson <mrobinson@igalia.com>
3013 [GTK] [CMake] Build the plugin process against GTK+ 2
3014 https://bugs.webkit.org/show_bug.cgi?id=116374
3016 Reviewed by Gustavo Noronha Silva.
3018 * Source/cmake/FindGDK2.cmake: Added.
3019 * Source/cmake/FindGTK2.cmake: Added.
3020 * Source/cmake/OptionsGTK.cmake: Look for GTK2 and GDK2.
3021 * Source/cmake/WebKitMacros.cmake: Abstract WebKit2 IPC generation here so it
3022 can be shared between the WebKit2 library and the plugin process.
3024 2013-12-17 Simon Pena <simon.pena@samsung.com>
3026 [NIX] Enable full debug builds by having ar creating thin archives
3027 https://bugs.webkit.org/show_bug.cgi?id=125850
3029 Reviewed by Csaba Osztrogonác.
3031 By default, CMake uses ar to generate libWebCore.a with cr parameters
3032 (do not warn if the library has to be created, and replace existing
3033 files in the archive). That results in a very large file, and ar fails
3034 with sizes over 4GB.
3036 Previously, debug builds on NIX were overriding CFLAGS in order to reduce
3037 the size of the WebCore library. Once that ar creates thin archives, overriding
3038 CFLAGS is no longer needed.
3040 * Source/cmake/OptionsNix.cmake: Remove CFLAGS override for debug builds.
3042 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
3044 [GTK] Remove Warnings in building about duplicate INSPECTOR variables
3045 https://bugs.webkit.org/show_bug.cgi?id=125710
3047 Reviewed by Tim Horton.
3051 2013-12-13 Joseph Pecoraro <pecoraro@apple.com>
3053 Web Inspector: Add Inspector Code Generation to JavaScriptCore for Runtime Domain
3054 https://bugs.webkit.org/show_bug.cgi?id=125595
3056 Reviewed by Timothy Hatcher.
3060 2013-12-13 Zan Dobersek <zdobersek@igalia.com>
3062 [GTK] Remove the -Wno-c++11-extensions compiler option for Clang builds
3063 https://bugs.webkit.org/show_bug.cgi?id=125639
3065 Reviewed by Anders Carlsson.
3067 * Source/autotools/SetupCompilerFlags.m4: The -Wno-c++11-extensions compiler option was in use
3068 when building with Clang. It is now removed as the C++11 standard is enabled throughout the project.
3070 2013-12-11 Martin Robinson <mrobinson@igalia.com> and Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
3072 Adding a .ycm_extra_conf file for webkitGtk
3073 https://bugs.webkit.org/show_bug.cgi?id=119618
3075 Reviewed by Gustavo Noronha Silva.
3077 Added a YouCompleteMe flag discovery script for Vim and the GTK+ port. The script
3078 read the GTK+ build files to determine dynamically what flags to compile a source
3079 file with. This allows Vim to provide auto-complete for C++/C language. See
3080 https://github.com/Valloric/YouCompleteMe for how to use this file.
3082 * .gitignore: Ignore the YCM symlinks in the tree.
3084 2013-12-12 Zan Dobersek <zdobersek@igalia.com>
3086 Use of ar T option not supported by older binutils
3087 https://bugs.webkit.org/show_bug.cgi?id=118732
3089 Reviewed by Gustavo Noronha Silva.
3091 * Source/autotools/SetupLibtool.m4: Make the AR_FLAGS value usable inside makefiles as an Automake variable.
3093 2013-12-11 Javier Fernandez <jfernandez@igalia.com>
3095 Arithmetic overflow when computing max-height CSS property with subpixel layout
3096 https://bugs.webkit.org/show_bug.cgi?id=119273
3098 Reviewed by Martin Robinson.
3100 Enabled SATURATED_LAYOUT_ARITHMETIC for the gtk+ port.
3102 * Source/autotools/SetupWebKitFeatures.m4:
3104 2013-12-10 Tamas Gergely <tgergely.u-szeged@partner.samsung.com>
3106 [CMAKE] Remove code that disables C++0x compat warnings for gcc-4.6 and above.
3107 https://bugs.webkit.org/show_bug.cgi?id=125492
3109 Reviewed by Zoltan Herczeg.
3111 Remove the code that disables these warnings for GCC >= 4.6.0
3113 * Source/cmake/WebKitHelpers.cmake:
3115 2013-12-10 Martin Robinson <mrobinson@igalia.com>
3117 Various fixes for the CMake GTK+ build
3119 Reviewed by Gustavo Noronha.
3121 * Source/cmake/OptionsGTK.cmake: Disable Quota support to maintain consistency with
3124 2013-12-09 Brian Holt <brian.holt@samsung.com>
3126 [WK2][Gtk] Add support for ENABLE_NETWORK_PROCESS to the build system
3127 https://bugs.webkit.org/show_bug.cgi?id=118231
3129 Reviewed by Martin Robinson.
3131 Original patch by Kwang Yul Seo <skyul@company100.net>.
3133 Disabled ENABLE_NETWORK_PROCESS by default.
3135 * Source/autotools/SetupAutomake.m4:
3136 * Source/autotools/SetupWebKitFeatures.m4:
3138 2013-12-06 Alberto Garcia <berto@igalia.com>
3140 [GTK] Enable web audio by default
3141 https://bugs.webkit.org/show_bug.cgi?id=124888
3143 Reviewed by Martin Robinson.
3145 When building with ./configure, enable_web_audio defaults to
3146 "no". However the basic functionality has been working for months
3147 so it's safe to enable it now.
3149 * Source/autotools/ReadCommandLineArguments.m4:
3151 2013-12-04 Ryosuke Niwa <rniwa@webkit.org>
3153 Enable HTMLTemplateElement by default
3154 https://bugs.webkit.org/show_bug.cgi?id=123851
3156 Reviewed by Antti Koivisto.
3158 * Source/autotools/SetupWebKitFeatures.m4:
3159 * Source/cmake/WebKitFeatures.cmake:
3161 2013-12-04 László Langó <lango@inf.u-szeged.hu>
3163 Allow --cloop option to work correctly in case of EFL.
3164 https://bugs.webkit.org/show_bug.cgi?id=125217
3166 Reviewed by Zoltan Herczeg.
3168 * Source/cmake/OptionsEfl.cmake:
3169 * Source/cmake/WebKitFeatures.cmake:
3170 * Source/cmakeconfig.h.cmake:
3172 2013-12-03 Ryuan Choi <ryuan.choi@samsung.com>
3174 [EFL] Disable RTTI for release build
3175 https://bugs.webkit.org/show_bug.cgi?id=125138
3177 Reviewed by Gyuyoung Kim.
3179 Binary size will be reduced about 1M bytes without RTTI.
3180 ewebkit.so : 43,449,275 -> 42,510,224
3181 ewebkit2.so: 46,715,870 -> 45,653,989
3183 * Source/cmake/OptionsEfl.cmake: Added -fno-rtti option to CMAKE_CXX_FLAGS_RELEASE.
3185 2013-12-02 Adrian Bunk <bunk@stusta.de>
3187 [GTK] Remove unneeded autoconf macros
3188 https://bugs.webkit.org/show_bug.cgi?id=125044
3190 Compilers that do not support const/inline/volatile and
3191 systems with pre-C89-headers are anyway not supported.
3193 Reviewed by Gustavo Noronha Silva.
3195 * Source/autotools/CheckSystemAndBasicDependencies.m4:
3197 2013-11-29 Laszlo Vidacs <lac@inf.u-szeged.hu>
3199 [cmake] Fix cmake warning: Argument not separated from preceding token by whitespace
3200 https://bugs.webkit.org/show_bug.cgi?id=124899
3202 Reviewed by Gyuyoung Kim.
3204 * Source/cmake/FindCairo.cmake:
3205 * Source/cmake/FindGStreamer.cmake:
3207 2013-11-28 Antti Koivisto <antti@apple.com>
3209 Remove feature: CSS variables
3210 https://bugs.webkit.org/show_bug.cgi?id=114119
3212 Reviewed by Andreas Kling.
3214 * Source/cmakeconfig.h.cmake:
3216 2013-11-27 László Langó <lango@inf.u-szeged.hu>
3218 [EFL] The remote inspector does not show the base page.
3219 https://bugs.webkit.org/show_bug.cgi?id=124942
3221 Reviewed by Gyuyoung Kim.
3223 On EFL the remote inspector does not show the base page about
3224 which pages are available for debug. This should be fixed for
3225 further inspector development.
3227 * Source/PlatformEfl.cmake:
3229 2013-11-26 Marcelo Lira <marcelo.lira@openbossa.org>
3231 Nix upstreaming - Adding build files and supporting scripts
3232 https://bugs.webkit.org/show_bug.cgi?id=118367
3234 Reviewed by Ryosuke Niwa.
3237 * Source/CMakeLists.txt:
3238 * Source/cmake/FindEGL.cmake:
3239 * Source/cmake/FindOpenGLES2.cmake: Added.
3240 * Source/cmake/OptionsCommon.cmake:
3241 * Source/cmake/OptionsNix.cmake: Added.
3243 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
3245 [EFL] E_DBus should be an optional
3246 https://bugs.webkit.org/show_bug.cgi?id=124881
3248 Reviewed by Gyuyoung Kim.
3250 * Source/cmake/OptionsEfl.cmake:
3251 Checked E_DBus when only ENABLE_BATTERY_STATUS is on.
3253 2013-11-25 Ryuan Choi <ryuan.choi@samsung.com>
3255 [EFL] Use Config mode of find_package for EFL 1.8
3256 https://bugs.webkit.org/show_bug.cgi?id=124555
3258 Reviewed by Gyuyoung Kim.
3260 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
3261 which parses header files to know the version. Instead, EFL 1.8 supports
3262 FooConfig.cmake such as EinaConfig.cmake.
3264 This patch tries to use a config mode if it is available.
3265 If config mode is not available with Eo, FindFoo.cmake will be used without
3266 version requirement.
3268 * Source/cmake/FindEo.cmake: Removed.
3269 EoConfig.cmake is only preffered for EFL 1.8.
3270 * Source/cmake/OptionsEfl.cmake:
3272 2013-11-23 Xabier Rodriguez Calvar <calvaris@igalia.com>
3274 [GStreamer] Remove 0.10 codepath
3275 https://bugs.webkit.org/show_bug.cgi?id=124534
3277 Reviewed by Philippe Normand.
3279 * Source/cmake/OptionsEfl.cmake: Removed GST_API_VERSION_1
3282 2013-11-22 Manuel Rego Casasnovas <rego@igalia.com>
3284 [GTK] Review enabled/disabled CSS features for release builds
3285 https://bugs.webkit.org/show_bug.cgi?id=124791
3287 Reviewed by Martin Robinson.
3289 Enable and disable some CSS features according to what last versions of
3292 * Source/autotools/SetupWebKitFeatures.m4: Enable ENABLE_CSS_REGIONS and
3293 ENABLE_CSS_STICKY_POSITION. Disable ENABLE_CSS_EXCLUSIONS and
3296 2013-11-21 Peter Molnar <pmolnar.u-szeged@partner.samsung.com>
3298 Remove ENABLE_WORKERS
3299 https://bugs.webkit.org/show_bug.cgi?id=105784
3301 Reviewed by Darin Adler.
3303 * Source/autotools/SetupWebKitFeatures.m4:
3304 * Source/cmake/WebKitFeatures.cmake:
3305 * Source/cmakeconfig.h.cmake:
3307 2013-11-20 Commit Queue <commit-queue@webkit.org>
3309 Unreviewed, rolling out r159496.
3310 http://trac.webkit.org/changeset/159496
3311 https://bugs.webkit.org/show_bug.cgi?id=124641
3313 It caused warning and build break with cmake lower than 2.8.8
3314 (Requested by ryuan on #webkit).
3316 * Source/cmake/OptionsEfl.cmake:
3318 2013-11-19 Ryuan Choi <ryuan.choi@samsung.com>
3320 [EFL] Use Config mode of find_package for EFL 1.8
3321 https://bugs.webkit.org/show_bug.cgi?id=124555
3323 Reviewed by Gyuyoung Kim.
3325 EFL 1.8 changed VERSION macro so it's difficult to use tricky approach
3326 which parses header file to know the version. Instead, EFL 1.8 supports
3327 Config mode of find_package using XXXConfig.cmake such as EinaConfig.cmake.
3329 This patch tries to use Config mode if it is available after checking Eo.
3331 * Source/cmake/OptionsEfl.cmake:
3333 2013-11-18 Carlos Garcia Campos <cgarcia@igalia.com>
3335 Unreviewed. Update NEWS and Versions.m4 for 2.3.2 release.
3337 * Source/autotools/Versions.m4: Bump version numbers.
3339 2013-11-06 Krzysztof Czech <k.czech@samsung.com>
3341 [EFL] Change required version of ATK to 2.10.0
3342 https://bugs.webkit.org/show_bug.cgi?id=123883
3344 Reviewed by Mario Sanchez Prada.
3346 Changing a required version of ATK to 2.10.0
3348 * Source/cmake/OptionsEfl.cmake:
3350 2013-11-05 Zalan Bujtas <zalan@apple.com>
3352 Widget's position change should not initiate layout, only when its size changes.
3353 https://bugs.webkit.org/show_bug.cgi?id=123860
3355 Reviewed by Andreas Kling.
3357 RenderWidgets initiate unnecessary layouts while scrolling when they are embedded to
3358 overflow:scroll containers. Scroll position change doesn't dirty the render tree
3359 so it should not trigger layout either.
3361 * ManualTests/layouts-on-renderwidgets-while-scrolling.html: Added.
3363 2013-11-05 Éva Balázsfalvi <balazsfalvi.eva@stud.u-szeged.hu>
3365 Remove leftover Qt related things from WebKitMacros.cmake
3366 https://bugs.webkit.org/show_bug.cgi?id=123798
3368 Reviewed by Anders Carlsson.
3370 * Source/cmake/WebKitMacros.cmake:
3372 2013-11-02 Patrick Gansterer <paroga@webkit.org>
3374 [WINCE] Disable export macros
3375 https://bugs.webkit.org/show_bug.cgi?id=123679
3377 Reviewed by Darin Adler.
3379 Avoid useless exports by turning of the export macros
3380 since the WinCE port works as a static library only.
3382 * Source/cmake/OptionsWinCE.cmake:
3384 2013-10-31 Ryuan Choi <ryuan.choi@samsung.com>
3386 [EFL][GLES] OpenGL should be an optional
3387 https://bugs.webkit.org/show_bug.cgi?id=123399
3389 Reviewed by Noam Rosenthal.
3391 * Source/cmake/OptionsEfl.cmake:
3392 Refactor the check routine of GL dependencies to use OpenGL as optional.
3394 2013-10-29 Carlos Garcia Campos <cgarcia@igalia.com>
3396 Unreviewed. Update NEWS and Versions.m4 for 2.3.1 release.
3398 * Source/autotools/Versions.m4: Bump version numbers.
3400 2013-10-24 Ryuan Choi <ryuan.choi@samsung.com>
3402 [EFL] Build break with latest EFL 1.8 libraries.
3403 https://bugs.webkit.org/show_bug.cgi?id=123245
3405 Reviewed by Gyuyoung Kim.
3407 After fixed build break on EFL 1.8 at r138326, EFL libraries are changed
3408 Eo typedef and splitted header files which contain version macro.
3410 * Source/cmake/EFLHelpers.cmake: Checked whether include path exist.
3411 * Source/cmake/FindEcore.cmake: Added 1.8 Header which have version macro.
3412 * Source/cmake/FindEdje.cmake: Ditto.
3413 * Source/cmake/FindEina.cmake: Ditto.
3414 * Source/cmake/FindEo.cmake: Ditto.
3415 * Source/cmake/FindEvas.cmake: Ditto.
3417 2013-10-22 Ryuan Choi <ryuan.choi@samsung.com>
3419 [EFL] Remove HAVE_GLX macro
3420 https://bugs.webkit.org/show_bug.cgi?id=123191
3422 Reviewed by Gyuyoung Kim.
3424 * Source/cmake/OptionsEfl.cmake: Removed unnecessary HAVE_GLX macro
3426 2013-10-21 Gergo Balogh <geryxyz@inf.u-szeged.hu>
3428 Remove .qmake.conf files
3429 https://bugs.webkit.org/show_bug.cgi?id=123091
3431 Reviewed by Csaba Osztrogonác.
3433 * .qmake.conf: Removed.
3435 2013-10-18 Carlos Garcia Campos <cgarcia@igalia.com>
3437 [GTK] Generate API documentation for GObject DOM bindings
3438 https://bugs.webkit.org/show_bug.cgi?id=121538
3440 Reviewed by Gustavo Noronha Silva.
3442 * GNUmakefile.am: Initialize gdom_symbol_files variable.
3444 2013-10-17 Afonso R. Costa Jr. <afonso.costa@samsung.com>
3446 [CMAKE] Update code to take advantage of CMake version 2.8.3+.
3447 https://bugs.webkit.org/show_bug.cgi?id=97516
3449 Reviewed by Gyuyoung Kim.
3451 CMake's version was changed to 2.8.3. So, these files below
3452 can be simplified to take advantage of CMake's new version.
3454 * Source/cmake/FindCairo.cmake: Simplified according to CMake 2.8.3+.
3455 * Source/cmake/FindGStreamer.cmake: Ditto.
3457 2013-10-16 Ryosuke Niwa <rniwa@webkit.org>
3459 Add a new flakiness dashboard clone
3460 https://bugs.webkit.org/show_bug.cgi?id=122936
3462 Reviewed by Anders Carlsson.
3464 Added the initial prototype.
3466 * Websites/test-results: Added.
3467 * Websites/test-results/.htaccess: Added.
3468 * Websites/test-results/admin: Added.
3469 * Websites/test-results/admin/index.php: Added.
3470 * Websites/test-results/api: Added.
3471 * Websites/test-results/api/manifest.php: Added.
3472 * Websites/test-results/api/report.php: Added.
3473 * Websites/test-results/api/results.php: Added.
3474 * Websites/test-results/include: Added.
3475 * Websites/test-results/include/config.json: Added.
3476 * Websites/test-results/include/db.php: Added.
3477 * Websites/test-results/include/init-database.sql: Added.
3478 * Websites/test-results/include/json-shared.php: Added.
3479 * Websites/test-results/include/test-results.php: Added.
3480 * Websites/test-results/index.html: Added.
3481 * Websites/test-results/js: Added.
3482 * Websites/test-results/js/autocompleter.js: Added.
3483 * Websites/test-results/js/build.js: Added.
3484 * Websites/test-results/js/dom.js: Added.
3486 2013-10-16 Csaba Osztrogonác <ossy@webkit.org>
3488 [WK2][Efl][CMake] Add support for ENABLE_NETWORK_PROCESS to the build system
3489 https://bugs.webkit.org/show_bug.cgi?id=110139
3491 Reviewed by Laszlo Gombos.
3493 Original patch by Balazs Kelemen <kbalazs@webkit.org>
3495 * Source/cmake/WebKitFeatures.cmake:
3496 * Source/cmakeconfig.h.cmake:
3498 2013-10-10 Marcelo Morais <m.morais@samsung.com>
3500 Web Inspector: Remove the old front-end from WebKit
3501 https://bugs.webkit.org/show_bug.cgi?id=122295
3503 Reviewed by Timothy Hatcher.
3505 * Source/PlatformGTK.cmake: Removed. This file was using files from the
3506 old inspector, not needed anymore.
3508 2013-10-09 Julien Brianceau <jbriance@cisco.com>
3510 [sh4] Add sh4 support when building with CMake.
3511 https://bugs.webkit.org/show_bug.cgi?id=122542
3513 Reviewed by Csaba Osztrogonác.
3517 2013-10-08 Martin Robinson <mrobinson@igalia.com>
3519 [GTK] Re-enable MathML for release builds
3520 https://bugs.webkit.org/show_bug.cgi?id=122361
3522 Reviewed by Darin Adler.
3524 * Source/autotools/SetupWebKitFeatures.m4: Enable MathML for release builds.
3526 2013-10-02 Anders Carlsson <andersca@apple.com>
3528 Remove Qt related files from the root directories
3529 https://bugs.webkit.org/show_bug.cgi?id=122249
3531 Reviewed by Andreas Kling.
3533 * Source/QtWebKit.pro: Removed.
3534 * Source/api.pri: Removed.
3535 * Source/qtwebkit.qdocconf: Removed.
3536 * Source/sync.profile: Removed.
3537 * Source/tests.pri: Removed.
3538 * Source/widgetsapi.pri: Removed.
3539 * WebKit.pro: Removed.
3541 2013-09-30 Sam Weinig <sam@webkit.org>
3543 Remove support for DOMFileSystem
3544 https://bugs.webkit.org/show_bug.cgi?id=122137
3546 Reviewed by Anders Carlsson.
3548 * Source/autotools/SetupWebKitFeatures.m4:
3549 * Source/cmake/OptionsBlackBerry.cmake:
3550 * Source/cmake/WebKitFeatures.cmake:
3551 * Source/cmakeconfig.h.cmake:
3553 2013-09-30 Benjamin Poulain <benjamin@webkit.org>
3555 Remove the code guarded by STYLE_SCOPED
3556 https://bugs.webkit.org/show_bug.cgi?id=122123
3558 Reviewed by Anders Carlsson.
3560 * Source/autotools/SetupWebKitFeatures.m4:
3561 * Source/cmake/OptionsBlackBerry.cmake:
3562 * Source/cmake/WebKitFeatures.cmake:
3563 * Source/cmakeconfig.h.cmake:
3565 2013-09-30 Allan Sandfeld Jensen <allan.jensen@digia.com>
3567 [Qt] Fix force_static_libs_as_shared in WebKit2
3568 https://bugs.webkit.org/show_bug.cgi?id=121961
3570 Reviewed by Csaba Osztrogonác.
3572 Get rid of the unused WebKit2QML library
3576 2013-09-26 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
3578 [GTK] Tons of warnings caused by using FORTIFY_SOURCE in an unoptimized build
3579 https://bugs.webkit.org/show_bug.cgi?id=121836
3581 Reviewed by Martin Robinson.
3583 * Source/autotools/SetupCompilerFlags.m4: only consider enabling FORTIFY_SOURCE if optimizations have
3584 been enabled, since they are required for FORTIFY_SOURCE to work, and enabling FORTIFY_SOURCE unconditionally
3585 generates warnings in newer glibc.
3587 2013-09-25 Allan Sandfeld Jensen <allan.jensen@digia.com>
3589 [Qt] Fix build with Qt 5.2 QtPosition module
3590 https://bugs.webkit.org/show_bug.cgi?id=121089
3592 Reviewed by Simon Hausmann.
3594 QtLocation -> QtPositioning
3596 * Source/sync.profile:
3598 2013-09-24 Zan Dobersek <zdobersek@igalia.com>
3600 [GTK] Enable the Wayland target if GTK+ dependency is found
3601 https://bugs.webkit.org/show_bug.cgi?id=121704
3603 Reviewed by Gustavo Noronha Silva.
3605 The Wayland target should be enabled by default if the GTK+ dependency is of version 3.9.14 or later.
3607 * Source/autotools/FindDependencies.m4: If the Wayland target was not strictly disabled, the GTK+ dependency
3608 is tested if it can provide the Wayland GDK backend, and that the version of that backend matches the version
3609 of the master GTK+ dependency for which we already tested. If found, the target is enabled, otherwise we either
3610 warn or error out, depending on whether the build target was set to auto or completely disabled through configuration.
3611 * Source/autotools/ReadCommandLineArguments.m4: Switch the default Wayland target status to 'auto', meaning
3612 it will be disabled if the GTK+ dependency is not found.
3613 * Source/autotools/Versions.m4: Require GTK+ 3.9.14 for the Wayland target only.
3615 2013-09-23 Zan Dobersek <zdobersek@igalia.com>
3617 [Autotools] Rework the build target selection
3618 https://bugs.webkit.org/show_bug.cgi?id=121703
3620 Reviewed by Gustavo Noronha Silva.
3622 Replace the --with-target configuration flag with target-specific --enable-*-target flags:
3623 - --enable-x11-target
3624 - --enable-wayland-target
3625 - --enable-win32-target
3626 - --enable-quartz-target
3627 - --enable-directfb-target
3629 By default, the X11 target is enabled. This default is preserved only if no --enable-*-target flag
3630 is passed on the command line. When that occurs, the newly-constructed list of build targets is
3631 used to determine what build targets should actually be built. So for instance, executing just
3632 `./configure` would only enable the X11 target as that's the default, and executing
3633 `./configure --enable-wayland-target` would only enable the Wayland target, as the defaults are
3636 * Source/autotools/CheckSystemAndBasicDependencies.m4: Abort if grep was not found, just in case.
3637 * Source/autotools/CustomMacros.m4: The new file that contains helpful custom macros.
3638 * Source/autotools/FindDependencies.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
3639 * Source/autotools/PrintBuildConfiguration.m4: Use the new AM_APPEND_TO_DESCRIPTION macro to construct a pretty-looking
3640 description string of what targets will be built.
3641 * Source/autotools/ReadCommandLineArguments.m4: Replace the --with-target configuration flag and the related
3642 hacks with the set of --enable-*-target flags. The new AM_DETERMINE_BUILD_TARGET_STATUS macro is used to determine
3643 whether to enable specific build targets, based indirectly on the passed-in --enable-*-target flags.
3644 * Source/autotools/SetupAutoconfHeader.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
3645 * Source/autotools/SetupAutomake.m4: Use the appropriate 'enable_*_target' references instead of 'with_*target'.
3646 * configure.ac: Include the new CustomMacros.m4 file.
3648 2013-09-23 Claudio Saavedra <csaavedra@igalia.com>
3652 Reviewed by Carlos Garcia Campos.
3654 * Source/autotools/Versions.m4: Bump to 2.3.0
3656 2013-09-20 Sergio Correia <sergio.correia@openbossa.org>
3658 [CMAKE] FindHarfBuzz: Handle harfbuzz / harfbuzz-icu split
3659 https://bugs.webkit.org/show_bug.cgi?id=121688
3661 Reviewed by Martin Robinson.
3663 HarfBuzz 0.9.18 split ICU support into a separate harfbuzz-icu library.
3664 To be able to build with earlier and newer versions of HarfBuzz, we should
3665 check for harfbuzz-icu as well, if version >= 0.9.18.
3667 * Source/cmake/FindHarfBuzz.cmake: Check for harfbuzz-icu, if version
3670 2013-09-16 Gustavo Noronha Silva <gns@gnome.org>
3672 [GTK] Make symbol export filter more strict, and disable for dev/test builds
3673 https://bugs.webkit.org/show_bug.cgi?id=120586
3675 Reviewed by Martin Robinson.
3677 * GNUmakefile.am: only include test-related automake files when developer
3679 * Source/autotools/ReadCommandLineArguments.m4: add --enable-developer-mode,
3680 defaults to no, and to yes for debug builds.
3681 * Source/autotools/SetupAutomake.m4: add ENABLE_DEVELOPER_MODE conditional.
3682 * Source/autotools/symbols.filter: make the exported symbols list much shorter,
3683 covering only the public ABI and a few symbols required by WebKit2 processes.
3685 2013-09-13 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
3687 [GTK] Move to the new web inspector
3688 https://bugs.webkit.org/show_bug.cgi?id=120647
3690 Reviewed by Carlos Garcia Campos.
3692 * GNUmakefile.am: include the new WebInspectorUI GNUmakefile.am.
3694 2013-09-13 Allan Sandfeld Jensen <allan.jensen@digia.com>
3696 [Qt] Update sync.profile
3697 https://bugs.webkit.org/show_bug.cgi?id=121295
3699 Reviewed by Simon Hausmann.
3701 Ensure we let the dependencies pick the right branch instead of always master
3702 and list all the dependencies we need on all platforms.
3704 * Source/sync.profile:
3706 2013-09-11 Mario Sanchez Prada <mario.prada@samsung.com>
3708 [GTK] Remove Gail dependency from build system for GTK3
3709 https://bugs.webkit.org/show_bug.cgi?id=119673
3711 Reviewed by Gustavo Noronha Silva.
3713 * Source/autotools/FindDependencies.m4: Don't look for GAIL at all.
3714 * Source/autotools/Versions.m4: Removed any reference to GAIL.
3715 * Source/cmake/FindGAIL3.cmake: Removed.
3716 * Source/cmake/OptionsGTK.cmake: Don't look for the GAIL package.
3718 2013-09-11 Patrick Gansterer <paroga@webkit.org>
3720 [CMake] Split out generic Windows files into its own file
3721 https://bugs.webkit.org/show_bug.cgi?id=119514
3723 Reviewed by Gyuyoung Kim.
3725 This allows us to add smaller CMakeLists.txt files when
3726 adding additional Windows ports.
3728 * Source/cmake/OptionsWinCE.cmake:
3729 * Source/cmake/WebKitMacros.cmake:
3731 2013-09-11 Alberto Garcia <berto@igalia.com>
3733 autogen.sh: fix removal of autom4te.cache
3734 https://bugs.webkit.org/show_bug.cgi?id=121150
3736 Reviewed by Carlos Garcia Campos.
3738 The removal of autom4te.cache is wrong, it uses 'rm -f' instead of
3739 'rm -rf' and it relies on an undefined variable.
3741 In addition to that, it should be done after running autoreconf,
3742 which is when it's no longer needed.
3746 2013-09-11 Alberto Garcia <berto@igalia.com>
3748 Unquoted $ORIGDIR in autogen.sh
3749 https://bugs.webkit.org/show_bug.cgi?id=19512
3751 Reviewed by Carlos Garcia Campos.
3753 Quote all directory names. This doesn't mean that all possible
3754 directory names are safe for building webkit, but the configure
3755 script already runs a sanity check.
3759 2013-09-11 Zan Dobersek <zdobersek@igalia.com>
3761 [GTK] Stop disabling deprecated symbols in debug builds
3762 https://bugs.webkit.org/show_bug.cgi?id=121145
3764 Reviewed by Carlos Garcia Campos.
3766 Disabling the dependencies' deprecated symbols in debug builds is only causing unnecessary
3767 build failures. Compiler warnings are being thrown whenever a deprecated symbol is being
3768 used, so a build failure is an overreach in this case.
3770 * Source/autotools/SetupAutoconfHeader.m4:
3772 2013-09-10 Marcelo Morais <m.morais@samsung.com>
3774 [EFL] WebInspector: Move to new webinspector
3775 https://bugs.webkit.org/show_bug.cgi?id=119559
3777 Reviewed by Gyuyoung Kim.
3779 Enabling the new Web Inspector on EFL port.
3780 Co-author: Andre Loureiro <andre.vl@samsung.com>
3782 * Source/PlatformEfl.cmake:
3783 * Source/cmake/OptionsEfl.cmake:
3785 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
3787 REGRESSION(r155143): Build failures on GTK port with Clang and libstdc++ < 4.8.1
3788 https://bugs.webkit.org/show_bug.cgi?id=120896
3790 Reviewed by Anders Carlsson.
3792 The GTK port currently only permits using the libstdc++ standard library when compiling with
3793 Clang. After r155143, build failures are occurring when using Clang and libstdc++ that predates
3794 the 4.8.0 release due to the use of std::is_trivially_destructible that isn't available in
3797 To not add additional special casing, the GTK port should move onto requiring libstdc++ >= 4.8.1
3798 when compiling with the Clang compiler. Version 4.8.1 was chosen since it's C++11 feature-complete.
3799 This strict requirement is possible as compiling the GTK port with the Clang compiler is not really
3800 widespread, so we can afford to adjust the required dependencies to match other ports' progression
3801 instead of modifying the code.
3803 * Source/autotools/CheckSystemAndBasicDependencies.m4: If the detected compiler is Clang, also check
3804 that the libstdc++ standard library is used by testing for the __GLIBCXX__ macro that should be defined
3805 to the value lesser than the '20130531', the date stamp used by the 4.8.1 release of libstdc++. Since
3806 possible future releases of the 4.6 or 4.7 series of libstdc++ will also match this check due to a newer
3807 date stamp contained in __GLIBCXX__, the std::is_trivially_destructible struct is also used so the
3808 compilation will fail if the libstdc++ that's used is older than allowed (and therefor does not support
3809 the feature). If the check fails, a fatal error is thrown, describing the requirement. Everything carries
3810 on as normal otherwise.
3812 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
3814 [GTK] Bump the required Clang version to 3.2
3815 https://bugs.webkit.org/show_bug.cgi?id=112537
3817 Reviewed by Gustavo Noronha Silva.
3819 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
3820 when the Clang compiler is specified.
3822 2013-09-05 Brendan Long <b.long@cablelabs.com>
3824 [Qt] DefaultFullScreenVideoHandler and PlatformVideoWindow are included in the build when they are disabled
3825 https://bugs.webkit.org/show_bug.cgi?id=117206