3 m4_define([webkit_major_version], [1])
4 m4_define([webkit_minor_version], [3])
5 m4_define([webkit_micro_version], [13])
7 # This is the version we'll be using as part of our User-Agent string
8 # e.g., AppleWebKit/$(webkit_user_agent_version) ...
10 # Sourced from Source/WebCore/Configurations/Version.xcconfig
11 m4_define([webkit_user_agent_major_version], [534])
12 m4_define([webkit_user_agent_minor_version], [26])
14 AC_INIT([WebKit],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
16 AC_CONFIG_MACRO_DIR([Source/autotools])
17 AC_CONFIG_AUX_DIR([Source/autotools])
18 AC_SUBST(ACLOCAL_AMFLAGS, "-I Source/autotools")
20 AC_CONFIG_HEADERS([autotoolsconfig.h])
23 WEBKIT_MAJOR_VERSION=webkit_major_version
24 WEBKIT_MINOR_VERSION=webkit_minor_version
25 WEBKIT_MICRO_VERSION=webkit_micro_version
26 WEBKIT_USER_AGENT_MAJOR_VERSION=webkit_user_agent_major_version
27 WEBKIT_USER_AGENT_MINOR_VERSION=webkit_user_agent_minor_version
28 AC_SUBST(WEBKIT_MAJOR_VERSION)
29 AC_SUBST(WEBKIT_MINOR_VERSION)
30 AC_SUBST(WEBKIT_MICRO_VERSION)
31 AC_SUBST(WEBKIT_USER_AGENT_MAJOR_VERSION)
32 AC_SUBST(WEBKIT_USER_AGENT_MINOR_VERSION)
34 AC_CONFIG_SRCDIR([Source/WebCore/config.h])
36 dnl # Libtool library version, not to confuse with API version
37 dnl # see http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
38 LIBWEBKITGTK_VERSION=6:0:6
39 AC_SUBST([LIBWEBKITGTK_VERSION])
41 AM_INIT_AUTOMAKE([foreign subdir-objects tar-ustar])
43 # Use AM_SILENT_RULES if present
44 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
46 # host checking - inspired by the GTK+ configure.in
47 # TODO: move these to webkit.m4?
48 AC_MSG_CHECKING([for native Win32])
57 AC_MSG_RESULT([$os_win32])
72 gnu* | linux* | k*bsd*-gnu)
80 # initialize webkit options
85 # use dolt to speedup the build
88 AC_PATH_PROG(FLEX, flex)
89 if test -z "$FLEX"; then
90 AC_MSG_ERROR([You need the 'flex' lexer generator to compile WebKit])
92 FLEX_VERSION=`$FLEX --version | sed 's,.*\ \([0-9]*\.[0-9]*\.[0-9]*\)$,\1,'`
93 AX_COMPARE_VERSION([2.5.33],[gt],[$FLEX_VERSION],
94 AC_MSG_WARN([You need at least version 2.5.33 of the 'flex' lexer generator to compile WebKit correctly]))
97 AC_PATH_PROG(GPERF, gperf)
98 if test -z "$GPERF"; then
99 AC_MSG_ERROR([You need the 'gperf' hash function generator to compile WebKit])
102 # pthread (not needed on Windows)
103 if test "$os_win32" = "no"; then
104 AC_CHECK_HEADERS([pthread.h],
105 AC_DEFINE([HAVE_PTHREAD_H],[1],[Define if pthread exists]),
106 AC_MSG_ERROR([pthread support is required to build WebKit]))
109 # check for libjpeg the way Gtk does it.
110 AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,
111 jpeg_ok=yes, jpeg_ok=no
112 AC_MSG_ERROR([JPEG library (libjpeg) not found]))
113 if test "$jpeg_ok" = yes; then
114 AC_MSG_CHECKING([for jpeglib])
120 #include <jpeglib.h>],
123 AC_MSG_RESULT($jpeg_ok)
124 if test "$jpeg_ok" = yes; then
126 # should we check for progressive JPEG like GTK+ as well?
128 AC_MSG_ERROR([JPEG library (libjpeg) not found])
131 AC_SUBST([JPEG_LIBS])
133 # Check for libpng the way Gtk+ does it
134 for l in libpng libpng14 libpng12; do
135 AC_MSG_CHECKING(for $l)
136 if $PKG_CONFIG --exists $l ; then
138 PNG_LIBS=`$PKG_CONFIG --libs $l`
146 if test "$png_ok" != yes; then
147 AC_CHECK_LIB(png, png_read_info,
148 [AC_CHECK_HEADER(png.h,
151 AC_MSG_ERROR([PNG library (libpng) not found]), -lz -lm)
152 if test "$png_ok" = yes; then
153 AC_MSG_CHECKING([for png_structp in png.h])
154 AC_TRY_COMPILE([#include <png.h>],
155 [png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct;],
158 AC_MSG_RESULT($png_ok)
159 if test "$png_ok" = yes; then
162 AC_MSG_ERROR([PNG library (libpng) not found])
165 AC_MSG_ERROR([PNG library (libpng) not found])
171 if test "$os_win32" = "yes"; then
173 SHLWAPI_LIBS=-lshlwapi
176 AC_SUBST([WINMM_LIBS])
177 AC_SUBST([SHLWAPI_LIBS])
178 AC_SUBST([OLE32_LIBS])
181 # determine the GTK+ version to use
182 AC_MSG_CHECKING([the GTK+ version to use])
184 [AS_HELP_STRING([--with-gtk=2.0|3.0], [the GTK+ version to use (default: 2.0)])],
187 *) AC_MSG_ERROR([invalid GTK+ version specified]) ;;
190 AC_MSG_RESULT([$with_gtk])
193 2.0) GTK_REQUIRED_VERSION=2.10
195 WEBKITGTK_API_MAJOR_VERSION=1
196 WEBKITGTK_API_MINOR_VERSION=0
197 WEBKITGTK_API_VERSION=1.0
198 WEBKITGTK_PC_NAME=webkit
200 GAIL_REQUIRED_VERSION=1.8
202 3.0) GTK_REQUIRED_VERSION=3.0
204 WEBKITGTK_API_MAJOR_VERSION=3
205 WEBKITGTK_API_MINOR_VERSION=0
206 WEBKITGTK_API_VERSION=3.0
207 WEBKITGTK_PC_NAME=webkitgtk
208 GAIL_PC_NAME=gail-3.0
209 GAIL_REQUIRED_VERSION=3.0
213 AC_SUBST([WEBKITGTK_API_MAJOR_VERSION])
214 AC_SUBST([WEBKITGTK_API_MINOR_VERSION])
215 AC_SUBST([WEBKITGTK_API_VERSION])
216 AC_SUBST([WEBKITGTK_PC_NAME])
217 AC_SUBST([GTK_API_VERSION])
218 AM_CONDITIONAL([GTK_API_VERSION_2],[test "$GTK_API_VERSION" = "2.0"])
220 # determine the GDK/GTK+ target
221 AC_MSG_CHECKING([the target windowing system])
223 AC_HELP_STRING([--with-target=@<:@x11/win32/quartz/directfb@:>@],
224 [Select webkit target [default=x11]]),
225 [],[with_target="x11"])
227 case "$with_target" in
228 x11|win32|quartz|directfb) ;;
229 *) AC_MSG_ERROR([Invalid target: must be x11, quartz, win32, or directfb.]) ;;
232 AC_MSG_RESULT([$with_target])
234 AC_MSG_CHECKING([for Hildon UI extensions])
236 AC_HELP_STRING([--with-hildon],
237 [Use Hildon UI extensions [default=no]]),
238 [],[with_hildon="no"])
239 AC_MSG_RESULT([$with_hildon])
241 if test "$with_hildon" = "yes"; then
242 HILDON_CPPFLAGS="-DMAEMO_CHANGES"
243 PKG_CHECK_MODULES([HILDON], [hildon-1])
244 AC_SUBST([HILDON_CPPFLAGS])
245 AC_SUBST([HILDON_CFLAGS])
246 AC_SUBST([HILDON_LIBS])
249 # minimum base dependencies
250 LIBSOUP_REQUIRED_VERSION=2.33.6
251 CAIRO_REQUIRED_VERSION=1.6
252 FONTCONFIG_REQUIRED_VERSION=2.4
253 FREETYPE2_REQUIRED_VERSION=9.0
254 LIBXML_REQUIRED_VERSION=2.6
256 # minimum GTK+ base dependencies
257 PANGO_REQUIRED_VERSION=1.12
260 LIBXSLT_REQUIRED_VERSION=1.1.7
261 SQLITE_REQUIRED_VERSION=3.0
262 GSTREAMER_REQUIRED_VERSION=0.10
263 GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=0.10.25
264 ENCHANT_REQUIRED_VERSION=0.22
268 # glib - glib and includes gthread
269 # unicode - check and identify which unicode backend to use
272 WEBKIT_CHECK_DEPENDENCIES([glib unicode])
274 GETTEXT_PACKAGE=$PACKAGE-$GTK_API_VERSION
275 AC_SUBST(GETTEXT_PACKAGE)
276 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
277 [The gettext catalog name])
279 PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= $LIBXML_REQUIRED_VERSION)
280 AC_SUBST(LIBXML_CFLAGS)
281 AC_SUBST(LIBXML_LIBS)
283 PKG_CHECK_MODULES(PANGO,
284 [pango >= $PANGO_REQUIRED_VERSION
286 AC_SUBST(PANGO_CFLAGS)
289 AC_MSG_CHECKING([whether to enable spellcheck support])
290 AC_ARG_ENABLE([spellcheck],
291 [AS_HELP_STRING([--enable-spellcheck],[enable support for spellcheck])],
292 [],[enable_spellcheck="yes"])
293 AC_MSG_RESULT([$enable_spellcheck])
295 if test "$enable_spellcheck" = "yes"; then
296 PKG_CHECK_MODULES(ENCHANT, enchant >= $ENCHANT_REQUIRED_VERSION, [], [enable_spellcheck="no"])
297 AC_SUBST(ENCHANT_CFLAGS)
298 AC_SUBST(ENCHANT_LIBS)
301 PKG_CHECK_MODULES(GAIL, $GAIL_PC_NAME >= $GAIL_REQUIRED_VERSION)
302 AC_SUBST(GAIL_CFLAGS)
305 # check for target-specific dependencies
306 if test "$with_target" = "directfb"; then
307 PKG_CHECK_MODULES(CAIRO, cairo-directfb >= $CAIRO_REQUIRED_VERSION)
308 PKG_CHECK_MODULES(GTK, gtk+-directfb-2.0 >= $GTK_REQUIRED_VERSION)
309 AC_DEFINE([WTF_PLATFORM_DIRECTFB],[1],[Define if target is DirectFB])
311 PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)
312 PKG_CHECK_MODULES(GTK, gtk+-$GTK_API_VERSION >= $GTK_REQUIRED_VERSION)
314 if test "$with_target" = "x11" && test "$os_win32" = "no"; then
316 PKG_CHECK_MODULES([XT],
318 [xt_has_pkg_config=yes],
319 [xt_has_pkg_config=no])
320 # some old versions of Xt do not provide xt.pc, so try to link against Xt
321 # and if it's installed fall back to just adding -lXt
322 if test "$xt_has_pkg_config" = "no"; then
323 # using AC_CHECK_LIB instead of AC_SEARCH_LIB is fine in this case as
324 # we don't care about the XtOpenDisplay symbol but only about the
326 AC_CHECK_LIB([Xt], [XtOpenDisplay],
327 [XT_CFLAGS=""; XT_LIBS="-lXt"],
328 [AC_MSG_ERROR([X Toolkit Intrinsics library (libXt) not found])])
330 AC_SUBST([XT_CFLAGS])
332 AC_DEFINE([WTF_PLATFORM_X11],[1],[Define if target is X11])
337 AC_SUBST(CAIRO_CFLAGS)
340 # check whether to build with debugging enabled
341 AC_MSG_CHECKING([whether to do a debug build])
343 AC_HELP_STRING([--enable-debug],
344 [turn on debugging [default=no]]),
345 [],[enable_debug="no"])
346 AC_MSG_RESULT([$enable_debug])
348 # check whether to enable optimized builds
349 AC_MSG_CHECKING([whether to enable optimized builds])
350 AC_ARG_ENABLE(optimizations,
351 AC_HELP_STRING([--enable-optimizations],
352 [turn on optimize builds (GCC only)
354 [enable_optimizations=$enableval],
355 [if test "$enable_debug" = "yes"; then enable_optimizations="no"; else enable_optimizations="yes"; fi])
356 AC_MSG_RESULT([$enable_optimizations])
358 # check whether to enable 3D transforms support
359 AC_MSG_CHECKING([whether to enable support for 3D Transforms])
360 AC_ARG_ENABLE(3d_transforms,
361 AC_HELP_STRING([--enable-3d-transforms],
362 [enable support for 3D transforms [default=no]]),
363 [],[enable_3d_transforms="no"])
364 AC_MSG_RESULT([$enable_3d_transforms])
366 # check whether to enable WebGL support
367 AC_MSG_CHECKING([whether to enable WebGL support])
369 AC_HELP_STRING([--enable-webgl],
370 [enable support for WebGL (experimental) [default=no]]),
371 [], [enable_webgl="no"])
372 AC_MSG_RESULT([$enable_webgl])
374 # check whether to enable channel messaging support
375 AC_MSG_CHECKING([whether to enable HTML5 Channel Messaging support])
376 AC_ARG_ENABLE(channel_messaging,
377 AC_HELP_STRING([--enable-channel-messaging],
378 [enable HTML5 channel messaging support [default=yes]]),
379 [],[enable_channel_messaging="yes"])
380 AC_MSG_RESULT([$enable_channel_messaging])
382 # check whether to enable notifications
383 AC_MSG_CHECKING([whether to enable notifications])
384 AC_ARG_ENABLE(notifications,
385 AC_HELP_STRING([--enable-notifications],
386 [enable notifications [default=no]]),
387 [],[enable_notifications="no"])
388 AC_MSG_RESULT([$enable_notifications])
390 # check whether to enable the meter tag
391 AC_MSG_CHECKING([whether to enable HTML5 meter tag])
392 AC_ARG_ENABLE(meter_tag,
393 AC_HELP_STRING([--enable-meter-tag],
394 [enable HTML5 meter [default=yes]]),
395 [],[enable_meter_tag="yes"])
396 AC_MSG_RESULT([$enable_meter_tag])
398 # check whether to enable the progress tag
399 AC_MSG_CHECKING([whether to enable HTML5 progress tag])
400 AC_ARG_ENABLE(progress_tag,
401 AC_HELP_STRING([--enable-progress-tag],
402 [enable HTML5 progress [default=yes]]),
403 [],[enable_progress_tag="yes"])
404 AC_MSG_RESULT([$enable_progress_tag])
406 # check whether to enable JavaScript debugger/profiler support
407 AC_MSG_CHECKING([whether to enable JavaScript debugger/profiler support])
408 AC_ARG_ENABLE(javascript_debugger,
409 AC_HELP_STRING([--enable-javascript-debugger],
410 [enable JavaScript debugger/profiler support [default=yes]]),
411 [],[enable_javascript_debugger="yes"])
412 AC_MSG_RESULT([$enable_javascript_debugger])
414 # check whether to build with datagrid support
415 AC_MSG_CHECKING([whether to enable HTML5 datagrid support])
416 AC_ARG_ENABLE(datagrid,
417 AC_HELP_STRING([--enable-datagrid],
418 [enable HTML5 datagrid support [default=no]]),
419 [],[enable_datagrid="no"])
420 AC_MSG_RESULT([$enable_datagrid])
422 # check whether to build with data transfer items support
423 AC_MSG_CHECKING([whether to enable HTML5 data transfer items support])
424 AC_ARG_ENABLE(data_transfer_items,
425 AC_HELP_STRING([--enable-data-transfer-items],
426 [enable HTML5 data transfer items support [default=no]]),
427 [],[enable_data_transfer_items="no"])
428 AC_MSG_RESULT([$enable_data_transfer_items])
430 # check whether to enable HTML5 Offline Web Applications support
431 AC_MSG_CHECKING([whether to enable HTML5 offline web applications support])
432 AC_ARG_ENABLE(offline_web_applications,
433 AC_HELP_STRING([--enable-offline-web-applications],
434 [enable HTML5 offline web applications support [default=yes]]),
435 [],[enable_offline_web_applications="yes"])
436 AC_MSG_RESULT([$enable_offline_web_applications])
438 # check whether to enable HTML5 client-side session and persitent storage support
439 AC_MSG_CHECKING([whether to enable HTML5 client-side session and persistent storage support])
440 AC_ARG_ENABLE(dom_storage,
441 AC_HELP_STRING([--enable-dom-storage],
442 [enable HTML5 client-side session and persistent storage support [default=yes]]),
443 [],[enable_dom_storage="yes"])
444 AC_MSG_RESULT([$enable_dom_storage])
446 # check whether to enable the indexed database API
447 AC_MSG_CHECKING([whether to enable the indexed database API])
448 AC_ARG_ENABLE(indexed_database,
449 AC_HELP_STRING([--enable-indexed-database],
450 [enable the indexed database API [default=no]]),
451 [],[enable_indexed_database="no"])
452 AC_MSG_RESULT([$enable_indexed_database])
454 # check whether to enable the speech input API
455 AC_MSG_CHECKING([whether to enable the speech input API])
456 AC_ARG_ENABLE(input_speech,
457 AC_HELP_STRING([--enable-input-speech],
458 [enable the speech input API [default=no]]),
459 [],[enable_input_speech="no"])
460 AC_MSG_RESULT([$enable_input_speech])
462 # check whether to build with database support
463 AC_MSG_CHECKING([whether to enable HTML5 client-side database storage support])
464 AC_ARG_ENABLE(database,
465 AC_HELP_STRING([--enable-database],
466 [enable HTML5 client-side database storage support [default=yes]]),
467 [],[enable_database="yes"])
468 AC_MSG_RESULT([$enable_database])
470 # check whether to build with server-sent events support
471 AC_MSG_CHECKING([whether to enable HTML5 server-sent events support])
472 AC_ARG_ENABLE(eventsource,
473 AC_HELP_STRING([--enable-eventsource],
474 [enable HTML5 server-sent events support [default=yes]]),
475 [],[enable_eventsource="yes"])
476 AC_MSG_RESULT([$enable_eventsource])
478 # check whether to build with icon database support
479 AC_MSG_CHECKING([whether to enable icon database support])
480 AC_ARG_ENABLE(icon_database,
481 AC_HELP_STRING([--enable-icon-database],
482 [enable icon database [default=yes]]),
483 [],[enable_icon_database="yes"])
484 AC_MSG_RESULT([$enable_icon_database])
486 # check whether to build with image resizer API support
487 AC_MSG_CHECKING([whether to enable image resizer API support])
488 AC_ARG_ENABLE(image_resizer,
489 AC_HELP_STRING([--enable-image-resizer],
490 [enable image resizer [default=no]]),
491 [],[enable_image_resizer="no"])
492 AC_MSG_RESULT([$enable_image_resizer])
494 # check whether to enable HTML5 datalist support
495 AC_MSG_CHECKING([whether to enable HTML5 datalist support])
496 AC_ARG_ENABLE(datalist,
497 AC_HELP_STRING([--enable-datalist],
498 [enable HTML5 datalist support [default=yes]]),
499 [],[enable_datalist="yes"])
500 AC_MSG_RESULT([$enable_datalist])
502 # check whether to enable HTML5 sandbox iframe support
503 AC_MSG_CHECKING([whether to enable HTML5 sandboxed iframe support])
504 AC_ARG_ENABLE(sandbox,
505 AC_HELP_STRING([--enable-sandbox],
506 [enable HTML5 sandboxed iframe support [default=yes]]),
507 [],[enable_sandbox="yes"])
508 AC_MSG_RESULT([$enable_sandbox])
510 # check whether to enable HTML5 audio/video support
511 AC_MSG_CHECKING([whether to enable HTML5 video support])
513 AC_HELP_STRING([--enable-video],
514 [enable HTML5 video support [default=yes]]),
515 [],[enable_video="yes"])
516 AC_MSG_RESULT([$enable_video])
518 # check whether to enable media statistics support
519 AC_MSG_CHECKING([whether to enable media statistics support])
520 AC_ARG_ENABLE(media_statistics,
521 AC_HELP_STRING([--enable-media-statistics],
522 [enable support for media statistics [default=no]]),
523 [], [enable_media_statistics="no"])
524 AC_MSG_RESULT([$enable_media_statistics])
526 # check whether to enable Javascript Fullscreen API support
527 AC_MSG_CHECKING([whether to enable Fullscreen API support])
528 AC_ARG_ENABLE(fullscreen_api,
529 AC_HELP_STRING([--enable-fullscreen-api],
530 [enable the Fullscreen API support [default=yes]]),
531 [],[enable_fullscreen_api="yes"])
532 AC_MSG_RESULT([$enable_fullscreen_api])
534 # check whether to enable XHTML-MP support
535 AC_MSG_CHECKING([whether to enable XHTML-MP support])
536 AC_ARG_ENABLE(xhtmlmp,
537 AC_HELP_STRING([--enable-xhtmlmp],
538 [enable support for XHTML-MP [default=no]]),
539 [],[enable_xhtmlmp="no"])
540 AC_MSG_RESULT([$enable_xhtmlmp])
542 # check whether to enable XPath support
543 AC_MSG_CHECKING([whether to enable XPath support])
545 AC_HELP_STRING([--enable-xpath],
546 [enable support for XPath [default=yes]]),
547 [],[enable_xpath="yes"])
548 AC_MSG_RESULT([$enable_xpath])
550 # check whether to enable XSLT support
551 AC_MSG_CHECKING([whether to enable XSLT support])
553 AC_HELP_STRING([--enable-xslt],
554 [enable support for XSLT [default=yes]]),
555 [],[enable_xslt="yes"])
556 AC_MSG_RESULT([$enable_xslt])
558 # check whether to enable geolocation support
559 AC_MSG_CHECKING([whether to enable geolocation support])
560 AC_ARG_ENABLE(geolocation,
561 AC_HELP_STRING([--enable-geolocation],
562 [enable support for geolocation [default=no]]),
563 [],[enable_geolocation="no"])
564 AC_MSG_RESULT([$enable_geolocation])
566 # check whether to enable client-based geolocation support
567 AC_MSG_CHECKING([whether to enable client-based geolocation support])
568 AC_ARG_ENABLE(client_based_geolocation,
569 AC_HELP_STRING([--enable-client-based-geolocation],
570 [enable support for client-based geolocation [default=no]]),
571 [],[enable_client_based_geolocation="no"])
572 AC_MSG_RESULT([$enable_client_based_geolocation])
574 # check whether to enable MathML support
575 AC_MSG_CHECKING([whether to enable MathML support])
576 AC_ARG_ENABLE(mathml,
577 AC_HELP_STRING([--enable-mathml],
578 [enable support for MathML [default=no]]),
579 [],[enable_mathml="no"])
580 AC_MSG_RESULT([$enable_mathml])
582 # check whether to enable SVG support
583 AC_MSG_CHECKING([whether to enable SVG support])
585 AC_HELP_STRING([--enable-svg],
586 [enable support for SVG [default=yes]]),
587 [],[enable_svg="yes"])
588 AC_MSG_RESULT([$enable_svg])
590 # check whether to enable WML support
591 AC_MSG_CHECKING([whether to enable WML support])
593 AC_HELP_STRING([--enable-wml],
594 [enable support for WML [default=no]]),
595 [],[enable_wml="no"])
596 AC_MSG_RESULT([$enable_wml])
598 # check whether to enable WCSS support
599 AC_MSG_CHECKING([whether to enable WCSS support])
601 AC_HELP_STRING([--enable-wcss],
602 [enable support for WCSS [default=no]]),
603 [],[enable_wcss="no"])
604 AC_MSG_RESULT([$enable_wcss])
606 # check whether to enable SharedWorkers support
607 AC_MSG_CHECKING([whether to enable SharedWorkers support])
608 AC_ARG_ENABLE(shared_workers,
609 AC_HELP_STRING([--enable-shared-workers],
610 [enable support for SharedWorkers [default=yes]]),
611 [],[enable_shared_workers="yes"])
612 AC_MSG_RESULT([$enable_shared_workers])
614 # check whether to enable Web Workers support
615 AC_MSG_CHECKING([whether to enable Web Workers support])
616 AC_ARG_ENABLE(workers,
617 AC_HELP_STRING([--enable-workers],
618 [enable support for Web Workers [default=yes]]),
619 [],[enable_workers="yes"])
620 AC_MSG_RESULT([$enable_workers])
622 # check whether to enable directory upload support
623 AC_MSG_CHECKING([whether to enable directory upload support])
624 AC_ARG_ENABLE(directory_upload,
625 AC_HELP_STRING([--enable-directory-upload],
626 [enable support for directory upload [default=no]]),
627 [], [enable_directory_upload="no"])
628 AC_MSG_RESULT([$enable_directory_upload])
630 # check whether to enable HTML5 FileSystem API support
631 AC_MSG_CHECKING([whether to enable HTML5 FileSystem API support])
632 AC_ARG_ENABLE(file_system,
633 AC_HELP_STRING([--enable-file-system],
634 [enable support for HTML5 FileSystem API [default=no]]),
635 [], [enable_file_system="no"])
636 AC_MSG_RESULT([$enable_file_system])
638 # turn off svg features if --disable-svg is requested
639 if test "$enable_svg" = "no"; then
640 enable_svg_animation=no
642 enable_svg_foreign_object=no
643 enable_svg_as_image=no
647 # check whether to enable support for SVG animation
648 AC_MSG_CHECKING([whether to enable support for SVG animation])
649 AC_ARG_ENABLE(svg_animation,
650 AC_HELP_STRING([--enable-svg-animation],
651 [enable support for SVG animation (experimental) [default=yes]]),
652 [],[enable_svg_animation="yes"])
653 AC_MSG_RESULT([$enable_svg_animation])
655 # check whether to enable support for filters
656 AC_MSG_CHECKING([whether to enable support for filters])
657 AC_ARG_ENABLE(filters,
658 AC_HELP_STRING([--enable-filters],
659 [enable support for filters (experimental) [default=yes]]),
660 [],[enable_filters="yes"])
661 AC_MSG_RESULT([$enable_filters])
663 # check whether to enable support for SVG fonts
664 AC_MSG_CHECKING([whether to enable support for SVG fonts])
665 AC_ARG_ENABLE(svg_fonts,
666 AC_HELP_STRING([--enable-svg-fonts],
667 [enable support for SVG fonts (experimental) [default=yes]]),
668 [],[enable_svg_fonts="yes"])
669 AC_MSG_RESULT([$enable_svg_fonts])
671 # check whether to enable foreign objects support for SVG
672 AC_MSG_CHECKING([whether to enable support for SVG foreign objects])
673 AC_ARG_ENABLE(svg_foreign_object,
674 AC_HELP_STRING([--enable-svg-foreign-object],
675 [enable support for SVG foreign objects (experimental) [default=yes]]),
676 [],[enable_svg_foreign_object="yes"])
677 AC_MSG_RESULT([$enable_svg_foreign_object])
679 # check whether to enable SVG As Image support
680 AC_MSG_CHECKING([whether to enable SVG as Image support])
681 AC_ARG_ENABLE(svg_as_image,
682 AC_HELP_STRING([--enable-svg-as-image],
683 [enable SVG as Image support (experimental) [default=yes]]),
684 [],[enable_svg_as_image="yes"])
685 AC_MSG_RESULT([$enable_svg_as_image])
687 # check whether to enable SVG USE element support
688 AC_MSG_CHECKING([whether to enable support for SVG use element])
689 AC_ARG_ENABLE(svg_use,
690 AC_HELP_STRING([--enable-svg-use],
691 [enable SVG use element support (experimental) [default=yes]]),
692 [],[enable_svg_use="yes"])
693 AC_MSG_RESULT([$enable_svg_use])
695 # check for SVG features, enabling SVG if necessary
696 if test "$enable_svg_animation" = "yes" || \
697 test "$enable_svg_fonts" = "yes" || \
698 test "$enable_svg_foreign_object" = "yes" || \
699 test "$enable_svg_as_image" = "yes" || \
700 test "$enable_svg_use" = "yes"; then
702 if test "$enable_svg" = "no"; then
703 AC_MSG_WARN([SVG feature(s) requested but SVG is disabled.. Enabling SVG support])
708 # check whether to enable Web Socket support
709 AC_MSG_CHECKING([whether to enable Web Sockets support])
710 AC_ARG_ENABLE(web_sockets,
711 AC_HELP_STRING([--enable-web-sockets],
712 [enable support for Web Sockets [default=yes]]),
713 [],[enable_web_sockets="yes"])
714 AC_MSG_RESULT([$enable_web_sockets])
716 # check whether to enable Web Audio support
717 AC_MSG_CHECKING([whether to enable Web Audio support])
718 AC_ARG_ENABLE(web_audio,
719 AC_HELP_STRING([--enable-web-audio],
720 [enable support for Web Audio [default=no]]),
721 [],[enable_web_audio="no"])
722 AC_MSG_RESULT([$enable_web_audio])
724 # check whether to enable Web Timing support
725 AC_MSG_CHECKING([whether to enable Web Timing support])
726 AC_ARG_ENABLE(web_timing,
727 AC_HELP_STRING([--enable-web-timing],
728 [enable support for Web Timing [default=no]]),
729 [],[enable_web_timing="no"])
730 AC_MSG_RESULT([$enable_web_timing])
732 # check whether to enable Blob support
733 AC_MSG_CHECKING([whether to enable Blob support])
735 AC_HELP_STRING([--enable-blob],
736 [enable support for Blob [default=yes]]),
737 [],[enable_blob="yes"])
738 AC_MSG_RESULT([$enable_blob])
740 # check whether to enable Fast Mobile Scrolling support
741 AC_MSG_CHECKING([whether to enable Fast Mobile Scrolling])
742 AC_ARG_ENABLE(fast_mobile_scrolling,
743 AC_HELP_STRING([--enable-fast-mobile-scrolling],
744 [enable support for Fast Mobile Scrolling [default=no]]),
745 [],[enable_fast_mobile_scrolling="no"])
746 AC_MSG_RESULT([$enable_fast_mobile_scrolling])
748 # check whether to enable code coverage
749 AC_MSG_CHECKING([whether to enable code coverage support])
750 AC_ARG_ENABLE(coverage,
751 AC_HELP_STRING([--enable-coverage],
752 [enable code coverage support [default=no]]),
753 [],[enable_coverage="no"])
754 AC_MSG_RESULT([$enable_coverage])
756 # check whether to enable FastMalloc
757 AC_MSG_CHECKING([whether to enable optimized memory allocator])
758 AC_ARG_ENABLE(fast_malloc,
759 AC_HELP_STRING([--enable-fast-malloc],
760 [enable optimized memory allocator default=yes, default=no for debug builds]),
761 [],[if test "$enable_debug" = "yes"; then enable_fast_malloc="no"; else enable_fast_malloc="yes"; fi])
762 AC_MSG_RESULT([$enable_fast_malloc])
764 AC_MSG_CHECKING([whether to enable JIT compilation])
766 AC_HELP_STRING([--enable-jit],
767 [Enable JIT compilation default=yes]),
768 [],[enable_jit="yes"])
769 if test "$enable_jit" = "yes"; then
772 AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
773 AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
774 AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
777 AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
778 AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
779 AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
780 AC_DEFINE([ENABLE_JIT_OPTIMIZE_CALL], [1], [Define to enable optimizing calls])
781 AC_DEFINE([ENABLE_JIT_OPTIMIZE_PROPERTY_ACCESS], [1], [Define to enable optimized property access])
782 AC_DEFINE([ENABLE_JIT_OPTIMIZE_ARITHMETIC], [1], [Define to enable optimized arithmetic])
785 AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_VA_LIST], [1], [Use stub va_list])
788 AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_REGISTER], [1], [Use stub register])
789 AC_DEFINE([WTF_USE_ALTERNATE_JSIMMEDIATE], [1], [Use alternate JSImmediate])
794 enable_jit="no (CPU '$host_cpu' not supported)"
798 AC_DEFINE([ENABLE_JIT], [0], [Define to enable JIT])
800 AC_MSG_RESULT([$enable_jit])
803 AC_MSG_CHECKING([whether to enable opcode stats])
804 AC_ARG_ENABLE([opcode-stats],
805 [AS_HELP_STRING([--enable-opcode-stats], [Enable Opcode statistics (default: disabled)])],
806 [], [enable_opcode_stats=no])
807 AC_MSG_RESULT([$enable_opcode_stats])
809 if test "$enable_opcode_stats" = "yes"; then
810 if test "$enable_jit" = "yes"; then
811 AC_MSG_ERROR([JIT must be disabled for Opcode stats to work.])
813 AC_DEFINE([ENABLE_OPCODE_STATS], [1], [Define to enable Opcode statistics])
817 AC_MSG_CHECKING([whether to enable link prefetch support])
818 AC_ARG_ENABLE([link-prefetch],
819 [AS_HELP_STRING([--enable-link-prefetch], [Enable Link prefetch support (default: disabled)])],
820 [],[enable_link_prefetch=no])
821 AC_MSG_RESULT([$enable_link_prefetch])
823 if test "$enable_link_prefetch" = "yes"; then
824 AC_DEFINE([ENABLE_LINK_PREFETCH], [1], [Define to enable link prefetch support])
827 # GObject Introspection
828 AC_MSG_CHECKING([whether to enable GObject introspection support])
829 AC_ARG_ENABLE([introspection],
830 [AS_HELP_STRING([--enable-introspection],[Enable GObject introspection (default: disabled)])],
831 [],[enable_introspection=no])
832 AC_MSG_RESULT([$enable_introspection])
840 if test "$enable_introspection" = "yes"; then
841 GOBJECT_INTROSPECTION_REQUIRED=0.9.5
842 PKG_CHECK_MODULES([INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
844 G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
845 G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
846 G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
847 AC_DEFINE([ENABLE_INTROSPECTION],[1],[Define to enable GObject introspection support])
850 AC_SUBST([G_IR_SCANNER])
851 AC_SUBST([G_IR_COMPILER])
852 AC_SUBST([G_IR_GENERATE])
854 # determine the font backend
855 AC_MSG_CHECKING([the font backend to use])
856 AC_ARG_WITH(font_backend,
857 AC_HELP_STRING([--with-font-backend=@<:@freetype/pango@:>@],
858 [Select font backend [default=freetype]]),
859 [],[with_font_backend="freetype"])
861 case "$with_font_backend" in
863 *) AC_MSG_ERROR([Invalid font backend: must be freetype or pango.]) ;;
865 AC_MSG_RESULT([$with_font_backend])
867 # Add '-g' flag to gcc if it's debug build
868 if test "$enable_debug" = "yes"; then
869 CXXFLAGS="$CXXFLAGS -g"
872 AC_DEFINE([NDEBUG], [1], [Define to disable debugging features])
875 # Add the appropriate 'O' level for optimized builds
876 if test "$enable_optimizations" = "yes"; then
877 CXXFLAGS="$CXXFLAGS -O2"
880 CXXFLAGS="$CXXFLAGS -O0"
884 PKG_CHECK_MODULES([LIBSOUP],
885 [libsoup-2.4 >= $LIBSOUP_REQUIRED_VERSION])
886 AC_SUBST([LIBSOUP_CFLAGS])
887 AC_SUBST([LIBSOUP_LIBS])
889 # check if FreeType/FontConfig are available
890 if test "$with_font_backend" = "freetype"; then
891 if test "$with_target" = "directfb"; then
892 PKG_CHECK_MODULES([FREETYPE],
893 [fontconfig >= $FONTCONFIG_REQUIRED_VERSION
894 freetype2 >= $FREETYPE2_REQUIRED_VERSION])
896 PKG_CHECK_MODULES([FREETYPE],
898 fontconfig >= $FONTCONFIG_REQUIRED_VERSION
899 freetype2 >= $FREETYPE2_REQUIRED_VERSION])
901 AC_SUBST([FREETYPE_CFLAGS])
902 AC_SUBST([FREETYPE_LIBS])
905 # check if SQLite3 is available. Error out only if one of the
906 # features hard-depending on it is enabled while SQLite3 is
908 PKG_CHECK_MODULES([SQLITE3],
909 [sqlite3 >= $SQLITE_REQUIRED_VERSION],
910 [sqlite3_has_pkg_config=yes],
911 [sqlite3_has_pkg_config=no])
912 if test "$sqlite3_has_pkg_config" = "no"; then
913 AC_SEARCH_LIBS([sqlite3_open16], [sqlite3],
914 [sqlite3_found=yes;SQLITE3_LIBS="$LIBS";SQLITE3_CFLAGS="-I $srcdir/WebKitLibraries/WebCoreSQLite3"],
917 AC_SUBST([SQLITE3_CFLAGS])
918 AC_SUBST([SQLITE3_LIBS])
920 if (test "$sqlite3_found" = "no") && (test "$enable_icon_database" = "yes" || \
921 test "$enable_database" = "yes" || \
922 test "$enable_offline_web_applications" = "yes" || \
923 test "$enable_dom_storage" = "yes"); then
924 AC_MSG_ERROR([SQLite3 is required for the Database related features])
927 # check if libxslt is available
928 if test "$enable_xslt" = "yes"; then
929 PKG_CHECK_MODULES([LIBXSLT],[libxslt >= $LIBXSLT_REQUIRED_VERSION])
930 AC_SUBST([LIBXSLT_CFLAGS])
931 AC_SUBST([LIBXSLT_LIBS])
934 # check if geoclue is available
935 if test "$enable_geolocation" = "yes"; then
936 PKG_CHECK_MODULES([GEOCLUE], [geoclue])
937 AC_SUBST([GEOCLUE_CFLAGS])
938 AC_SUBST([GEOCLUE_LIBS])
941 # check if gstreamer is available
942 if test "$enable_video" = "yes"; then
943 PKG_CHECK_MODULES([GSTREAMER],
944 [gstreamer-0.10 >= $GSTREAMER_REQUIRED_VERSION
947 gstreamer-interfaces-0.10
948 gstreamer-pbutils-0.10
949 gstreamer-plugins-base-0.10 >= $GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION
950 gstreamer-video-0.10],
951 [have_gstreamer=yes])
953 AC_SUBST([GSTREAMER_CFLAGS])
954 AC_SUBST([GSTREAMER_LIBS])
957 # check for code coverage support
958 if test "$enable_coverage" = "yes"; then
959 COVERAGE_CFLAGS="-MD"
960 COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
961 AC_SUBST([COVERAGE_CFLAGS])
962 AC_SUBST([COVERAGE_LDFLAGS])
965 # check for HTML features
966 if test "$enable_video" = "yes"; then
971 AC_MSG_CHECKING([whether to build Webkit2])
972 AC_ARG_ENABLE(webkit2,
973 AC_HELP_STRING([--enable-webkit2],
974 [build webkit2 [default=no]]),
975 [], [enable_webkit2="no"])
976 AC_MSG_RESULT([$enable_webkit2])
977 if test "$enable_webkit2" = "yes"; then
978 WEBKITGTK_PC_NAME=${WEBKITGTK_PC_NAME}2
979 AC_SUBST([WEBKITGTK_PC_NAME])
982 GTK_DOC_CHECK([1.10])
985 AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
986 AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
987 AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
988 AM_CONDITIONAL([OS_GNU],[test "$os_gnu" = "yes"])
989 AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
991 # target conditionals
992 AM_CONDITIONAL([TARGET_X11], [test "$with_target" = "x11"])
993 AM_CONDITIONAL([TARGET_WIN32], [test "$with_target" = "win32"])
994 AM_CONDITIONAL([TARGET_QUARTZ], [test "$with_target" = "quartz"])
995 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_target" = "directfb"])
997 # Unicode backend conditionals
998 AM_CONDITIONAL([USE_ICU_UNICODE], [test "$with_unicode_backend" = "icu"])
999 AM_CONDITIONAL([USE_GLIB_UNICODE], [test "$with_unicode_backend" = "glib"])
1001 # Font backend conditionals
1002 AM_CONDITIONAL([USE_FREETYPE], [test "$with_font_backend" = "freetype"])
1003 AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"])
1005 # GStreamer feature conditional
1006 AM_CONDITIONAL([USE_GSTREAMER], [test "$have_gstreamer" = "yes"])
1008 # WebKit feature conditionals
1009 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"])
1010 AM_CONDITIONAL([ENABLE_3D_TRANSFORMS],[test "$enable_3d_transforms" = "yes"])
1011 AM_CONDITIONAL([ENABLE_WEBGL],[test "$enable_webgl" = "yes"])
1012 AM_CONDITIONAL([ENABLE_BLOB],[test "$enable_blob" = "yes"])
1013 AM_CONDITIONAL([ENABLE_METER_TAG],[test "$enable_meter_tag" = "yes"])
1014 AM_CONDITIONAL([ENABLE_PROGRESS_TAG],[test "$enable_progress_tag" = "yes"])
1015 AM_CONDITIONAL([ENABLE_CHANNEL_MESSAGING],[test "$enable_channel_messaging" = "yes"])
1016 AM_CONDITIONAL([ENABLE_JAVASCRIPT_DEBUGGER],[test "$enable_javascript_debugger" = "yes"])
1017 AM_CONDITIONAL([ENABLE_OFFLINE_WEB_APPLICATIONS],[test "$enable_offline_web_applications" = "yes"])
1018 AM_CONDITIONAL([ENABLE_DIRECTORY_UPLOAD],[test "$enable_directory_upload" = "yes"])
1019 AM_CONDITIONAL([ENABLE_DATAGRID],[test "$enable_datagrid" = "yes"])
1020 AM_CONDITIONAL([ENABLE_DATA_TRANSFER_ITEMS],[test "$enable_data_transfer_items" = "yes"])
1021 AM_CONDITIONAL([ENABLE_DOM_STORAGE],[test "$enable_dom_storage" = "yes"])
1022 AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"])
1023 AM_CONDITIONAL([ENABLE_DATALIST],[test "$enable_datalist" = "yes"])
1024 AM_CONDITIONAL([ENABLE_EVENTSOURCE],[test "$enable_eventsource" = "yes"])
1025 AM_CONDITIONAL([ENABLE_FAST_MOBILE_SCROLLING],[test "$enable_fast_mobile_scrolling" = "yes"])
1026 AM_CONDITIONAL([ENABLE_FILE_SYSTEM],[test "$enable_file_system" = "yes"])
1027 AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
1028 AM_CONDITIONAL([ENABLE_IMAGE_RESIZER],[test "$enable_image_resizer" = "yes"])
1029 AM_CONDITIONAL([ENABLE_INDEXED_DATABASE],[test "$enable_indexed_database" = "yes"])
1030 AM_CONDITIONAL([ENABLE_INPUT_SPEECH],[test "$enable_input_speech" = "yes"])
1031 AM_CONDITIONAL([ENABLE_XHTMLMP],[test "$enable_xhtmlmp" = "yes"])
1032 AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"])
1033 AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
1034 AM_CONDITIONAL([ENABLE_FILTERS],[test "$enable_filters" = "yes"])
1035 AM_CONDITIONAL([ENABLE_GEOLOCATION], [test "$enable_geolocation" = "yes"])
1036 AM_CONDITIONAL([ENABLE_CLIENT_BASED_GEOLOCATION], [test "$enable_client_based_geolocation" = "yes"])
1037 AM_CONDITIONAL([ENABLE_MATHML], [test "$enable_mathml" = "yes"])
1038 AM_CONDITIONAL([ENABLE_VIDEO],[test "$enable_video" = "yes"])
1039 AM_CONDITIONAL([ENABLE_MEDIA_STATISTICS],[test "$enable_media_statistics" = "yes"])
1040 AM_CONDITIONAL([ENABLE_FULLSCREEN_API],[test "$enable_fullscreen_api" = "yes"])
1041 AM_CONDITIONAL([ENABLE_NOTIFICATIONS],[test "$enable_notifications" = "yes"])
1042 AM_CONDITIONAL([ENABLE_ORIENTATION_EVENTS],[test "$enable_orientation_events" = "yes"])
1043 AM_CONDITIONAL([ENABLE_SVG],[test "$enable_svg" = "yes"])
1044 AM_CONDITIONAL([ENABLE_SVG_ANIMATION],[test "$enable_svg_animation" = "yes"])
1045 AM_CONDITIONAL([ENABLE_SVG_FONTS],[test "$enable_svg_fonts" = "yes"])
1046 AM_CONDITIONAL([ENABLE_SVG_FOREIGN_OBJECT],[test "$enable_svg_foreign_object" = "yes"])
1047 AM_CONDITIONAL([ENABLE_SVG_AS_IMAGE],[test "$enable_svg_as_image" = "yes"])
1048 AM_CONDITIONAL([ENABLE_SVG_USE],[test "$enable_svg_use" = "yes"])
1049 AM_CONDITIONAL([ENABLE_COVERAGE],[test "$enable_coverage" = "yes"])
1050 AM_CONDITIONAL([ENABLE_FAST_MALLOC],[test "$enable_fast_malloc" = "yes"])
1051 AM_CONDITIONAL([ENABLE_WML],[test "$enable_wml" = "yes"])
1052 AM_CONDITIONAL([ENABLE_WCSS],[test "$enable_wcss" = "yes"])
1053 AM_CONDITIONAL([ENABLE_WORKERS],[test "$enable_workers" = "yes"])
1054 AM_CONDITIONAL([ENABLE_SHARED_WORKERS],[test "$enable_shared_workers" = "yes"])
1055 AM_CONDITIONAL([SVG_FLAGS],[test "$svg_flags" = "yes"])
1056 AM_CONDITIONAL([HTML_FLAGS],[test "$html_flags" = "yes"])
1057 AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"])
1058 AM_CONDITIONAL([ENABLE_WEB_AUDIO],[test "$enable_web_audio" = "yes"])
1059 AM_CONDITIONAL([ENABLE_WEB_TIMING],[test "$enable_web_timing" = "yes"])
1060 AM_CONDITIONAL([ENABLE_OPCODE_STATS],[test "$enable_opcode_stats" = "yes"])
1061 AM_CONDITIONAL([ENABLE_WEBKIT2],[test "$enable_webkit2" = "yes"])
1062 AM_CONDITIONAL([ENABLE_SPELLCHECK],[test "$enable_spellcheck" = "yes"])
1065 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
1071 if test "$enable_webkit2" = "no"; then
1073 Source/WebKit/gtk/webkit/webkitversion.h
1074 Source/WebKit/gtk/docs/GNUmakefile
1075 Source/WebKit/gtk/docs/version.xml
1080 Source/WebKit/gtk/${WEBKITGTK_PC_NAME}-${WEBKITGTK_API_VERSION}.pc:Source/WebKit/gtk/webkit.pc.in
1081 Source/WebKit/gtk/JSCore-${WEBKITGTK_API_VERSION}.gir:Source/WebKit/gtk/JSCore.gir.in
1082 Source/WebKit/gtk/org.webkitgtk-${WEBKITGTK_API_VERSION}.gschema.xml:Source/WebKit/gtk/org.webkitgtk.gschema.xml.in
1084 ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
1088 Source/WebKit2/gtk/${WEBKITGTK_PC_NAME}-${WEBKITGTK_API_VERSION}.pc:Source/WebKit2/gtk/webkit2.pc.in
1090 ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
1097 WebKit was configured with the following options:
1099 Build configuration:
1100 Enable debugging (slow) : $enable_debug
1101 Enable GCC build optimization : $enable_optimizations
1102 Code coverage support : $enable_coverage
1103 Unicode backend : $with_unicode_backend
1104 Font backend : $with_font_backend
1105 Optimized memory allocator : $enable_fast_malloc
1107 3D Transforms : $enable_3d_transforms
1108 WebGL : $enable_webgl
1109 Blob support : $enable_blob
1110 Directory upload : $enable_directory_upload
1111 Fast Mobile Scrolling : $enable_fast_mobile_scrolling
1112 JIT compilation : $enable_jit
1113 Filters support : $enable_filters
1114 Geolocation support : $enable_geolocation
1115 Client-based geolocation support : $enable_client_based_geolocation
1116 JavaScript debugger/profiler support : $enable_javascript_debugger
1117 MathML support : $enable_mathml
1118 Media statistics : $enable_media_statistics
1119 HTML5 offline web applications support : $enable_offline_web_applications
1120 HTML5 channel messaging support : $enable_channel_messaging
1121 HTML5 meter element support : $enable_meter_tag
1122 HTML5 progress element support : $enable_progress_tag
1123 HTML5 client-side session and persistent storage support : $enable_dom_storage
1124 HTML5 client-side database storage support : $enable_database
1125 HTML5 datagrid support : $enable_datagrid
1126 HTML5 data transfer items support : $enable_data_transfer_items
1127 HTML5 FileSystem API support : $enable_file_system
1128 HTML5 sandboxed iframe support : $enable_sandbox
1129 HTML5 server-sent events support : $enable_eventsource
1130 HTML5 video element support : $enable_video
1131 Fullscreen API support : $enable_fullscreen_api
1132 Icon database support : $enable_icon_database
1133 Image resizer support : $enable_image_resizer
1134 Link prefetch support : $enable_link_prefetch
1135 Opcode stats : $enable_opcode_stats
1136 SharedWorkers support : $enable_shared_workers
1137 Speech input support : $enable_input_speech
1138 SVG support : $enable_svg
1139 SVG animation support : $enable_svg_animation
1140 SVG fonts support : $enable_svg_fonts
1141 SVG foreign object support : $enable_svg_foreign_object
1142 SVG as image support : $enable_svg_as_image
1143 SVG use element support : $enable_svg_use
1144 WML support : $enable_wml
1145 WCSS support : $enable_wcss
1146 Web Audio support : $enable_web_audio
1147 Web Sockets support : $enable_web_sockets
1148 Web Timing support : $enable_web_timing
1149 Web Workers support : $enable_workers
1150 XHTML-MP support : $enable_xhtmlmp
1151 XPATH support : $enable_xpath
1152 XSLT support : $enable_xslt
1153 Spellcheck support : $enable_spellcheck
1156 GTK+ version : $with_gtk
1157 GDK target : $with_target
1158 Hildon UI extensions : $with_hildon
1159 Introspection support : $enable_introspection
1160 WebKit2 support : $enable_webkit2
1162 if test "$with_unicode_backend" = "glib"; then
1163 echo " >> WARNING: the glib-based unicode backend is slow and incomplete <<"