3 m4_define([webkit_major_version], [1])
4 m4_define([webkit_minor_version], [3])
5 m4_define([webkit_micro_version], [3])
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 WebCore/Configurations/Version.xcconfig
11 m4_define([webkit_user_agent_major_version], [531])
12 m4_define([webkit_user_agent_minor_version], [2])
14 AC_INIT([WebKit],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
16 AC_CONFIG_MACRO_DIR([autotools])
17 AC_CONFIG_AUX_DIR([autotools])
18 AC_SUBST(ACLOCAL_AMFLAGS, "-I 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([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#Libtool-versioning
38 LIBWEBKITGTK_VERSION=0:1:0
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])
170 # determine the GTK+ version to use
171 AC_MSG_CHECKING([the GTK+ version to use])
173 [AS_HELP_STRING([--with-gtk=2.0|3.0], [the GTK+ version to use (default: 2.0)])],
176 *) AC_MSG_ERROR([invalid GTK+ version specified]) ;;
179 AC_MSG_RESULT([$with_gtk])
182 2.0) GTK_REQUIRED_VERSION=2.10
184 WEBKITGTK_API_MAJOR_VERSION=1
185 WEBKITGTK_API_MINOR_VERSION=0
186 WEBKITGTK_API_VERSION=1.0
187 WEBKITGTK_PC_NAME=webkit
189 GAIL_REQUIRED_VERSION=1.8
191 3.0) GTK_REQUIRED_VERSION=2.90
193 WEBKITGTK_API_MAJOR_VERSION=3
194 WEBKITGTK_API_MINOR_VERSION=0
195 WEBKITGTK_API_VERSION=3.0
196 WEBKITGTK_PC_NAME=webkitgtk
197 GAIL_PC_NAME=gail-3.0
198 GAIL_REQUIRED_VERSION=2.90.4
202 AC_SUBST([WEBKITGTK_API_MAJOR_VERSION])
203 AC_SUBST([WEBKITGTK_API_MINOR_VERSION])
204 AC_SUBST([WEBKITGTK_API_VERSION])
205 AC_SUBST([WEBKITGTK_PC_NAME])
206 AC_SUBST([GTK_API_VERSION])
207 AM_CONDITIONAL([GTK_API_VERSION_2],[test "$GTK_API_VERSION" = "2.0"])
209 # determine the GDK/GTK+ target
210 AC_MSG_CHECKING([the target windowing system])
212 AC_HELP_STRING([--with-target=@<:@x11/win32/quartz/directfb@:>@],
213 [Select webkit target [default=x11]]),
214 [],[with_target="x11"])
216 case "$with_target" in
217 x11|win32|quartz|directfb) ;;
218 *) AC_MSG_ERROR([Invalid target: must be x11, quartz, win32, or directfb.]) ;;
221 AC_MSG_RESULT([$with_target])
223 AC_MSG_CHECKING([for Hildon UI extensions])
225 AC_HELP_STRING([--with-hildon],
226 [Use Hildon UI extensions [default=no]]),
227 [],[with_hildon="no"])
228 AC_MSG_RESULT([$with_hildon])
230 if test "$with_hildon" = "yes"; then
231 HILDON_CPPFLAGS="-DMAEMO_CHANGES"
232 PKG_CHECK_MODULES([HILDON], [hildon-1])
233 AC_SUBST([HILDON_CPPFLAGS])
234 AC_SUBST([HILDON_CFLAGS])
235 AC_SUBST([HILDON_LIBS])
238 # minimum base dependencies
239 LIBSOUP_REQUIRED_VERSION=2.28.2
240 CAIRO_REQUIRED_VERSION=1.6
241 FONTCONFIG_REQUIRED_VERSION=2.4
242 FREETYPE2_REQUIRED_VERSION=9.0
243 LIBXML_REQUIRED_VERSION=2.6
245 # minimum GTK+ base dependencies
246 PANGO_REQUIRED_VERSION=1.12
249 LIBXSLT_REQUIRED_VERSION=1.1.7
250 SQLITE_REQUIRED_VERSION=3.0
251 GSTREAMER_REQUIRED_VERSION=0.10
252 GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=0.10.25
253 ENCHANT_REQUIRED_VERSION=0.22
257 # glib - glib and includes gthread
258 # unicode - check and identify which unicode backend to use
261 WEBKIT_CHECK_DEPENDENCIES([glib unicode])
263 GETTEXT_PACKAGE=$PACKAGE-$GTK_API_VERSION
264 AC_SUBST(GETTEXT_PACKAGE)
265 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
266 [The gettext catalog name])
268 PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= $LIBXML_REQUIRED_VERSION)
269 AC_SUBST(LIBXML_CFLAGS)
270 AC_SUBST(LIBXML_LIBS)
272 PKG_CHECK_MODULES(PANGO,
273 [pango >= $PANGO_REQUIRED_VERSION
275 AC_SUBST(PANGO_CFLAGS)
278 PKG_CHECK_MODULES(ENCHANT, enchant >= $ENCHANT_REQUIRED_VERSION)
279 AC_SUBST(ENCHANT_CFLAGS)
280 AC_SUBST(ENCHANT_LIBS)
282 PKG_CHECK_MODULES(GAIL, $GAIL_PC_NAME >= $GAIL_REQUIRED_VERSION)
283 AC_SUBST(GAIL_CFLAGS)
286 # check for target-specific dependencies
287 if test "$with_target" = "directfb"; then
288 PKG_CHECK_MODULES(CAIRO, cairo-directfb >= $CAIRO_REQUIRED_VERSION)
289 PKG_CHECK_MODULES(GTK, gtk+-directfb-2.0 >= $GTK_REQUIRED_VERSION)
290 AC_DEFINE([WTF_PLATFORM_DIRECTFB],[1],[Define if target is DirectFB])
292 PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)
293 PKG_CHECK_MODULES(GTK, gtk+-$GTK_API_VERSION >= $GTK_REQUIRED_VERSION)
295 if test "$with_target" = "x11" && test "$os_win32" = "no"; then
297 PKG_CHECK_MODULES([XT],
299 [xt_has_pkg_config=yes],
300 [xt_has_pkg_config=no])
301 # some old versions of Xt do not provide xt.pc, so try to link against Xt
302 # and if it's installed fall back to just adding -lXt
303 if test "$xt_has_pkg_config" = "no"; then
304 # using AC_CHECK_LIB instead of AC_SEARCH_LIB is fine in this case as
305 # we don't care about the XtOpenDisplay symbol but only about the
307 AC_CHECK_LIB([Xt], [XtOpenDisplay],
308 [XT_CFLAGS=""; XT_LIBS="-lXt"],
309 [AC_MSG_ERROR([X Toolkit Intrinsics library (libXt) not found])])
311 AC_SUBST([XT_CFLAGS])
313 AC_DEFINE([WTF_PLATFORM_X11],[1],[Define if target is X11])
318 AC_SUBST(CAIRO_CFLAGS)
321 # check whether to build with debugging enabled
322 AC_MSG_CHECKING([whether to do a debug build])
324 AC_HELP_STRING([--enable-debug],
325 [turn on debugging [default=no]]),
326 [],[enable_debug="no"])
327 AC_MSG_RESULT([$enable_debug])
329 # check whether to enable optimized builds
330 AC_MSG_CHECKING([whether to enable optimized builds])
331 AC_ARG_ENABLE(optimizations,
332 AC_HELP_STRING([--enable-optimizations],
333 [turn on optimize builds (GCC only)
335 [enable_optimizations=$enableval],
336 [if test "$enable_debug" = "yes"; then enable_optimizations="no"; else enable_optimizations="yes"; fi])
337 AC_MSG_RESULT([$enable_optimizations])
339 # check whether to enable 3D transforms support
340 AC_MSG_CHECKING([whether to enable support for 3D Transforms])
341 AC_ARG_ENABLE(3D_transforms,
342 AC_HELP_STRING([--enable-3D-transforms],
343 [enable support for 3D transforms [default=no]]),
344 [],[enable_3D_transforms="no"])
345 AC_MSG_RESULT([$enable_3D_transforms])
347 # check whether to enable channel messaging support
348 AC_MSG_CHECKING([whether to enable HTML5 Channel Messaging support])
349 AC_ARG_ENABLE(channel_messaging,
350 AC_HELP_STRING([--enable-channel-messaging],
351 [enable HTML5 channel messaging support [default=yes]]),
352 [],[enable_channel_messaging="yes"])
353 AC_MSG_RESULT([$enable_channel_messaging])
355 # check whether to enable JavaScript debugger/profiler support
356 AC_MSG_CHECKING([whether to enable JavaScript debugger/profiler support])
357 AC_ARG_ENABLE(javascript_debugger,
358 AC_HELP_STRING([--enable-javascript-debugger],
359 [enable JavaScript debugger/profiler support [default=yes]]),
360 [],[enable_javascript_debugger="yes"])
361 AC_MSG_RESULT([$enable_javascript_debugger])
363 # check whether to enable HTML5 Offline Web Applications support
364 AC_MSG_CHECKING([whether to enable HTML5 offline web applications support])
365 AC_ARG_ENABLE(offline_web_applications,
366 AC_HELP_STRING([--enable-offline-web-applications],
367 [enable HTML5 offline web applications support [default=yes]]),
368 [],[enable_offline_web_applications="yes"])
369 AC_MSG_RESULT([$enable_offline_web_applications])
371 # check whether to enable HTML5 client-side session and persitent storage support
372 AC_MSG_CHECKING([whether to enable HTML5 client-side session and persistent storage support])
373 AC_ARG_ENABLE(dom_storage,
374 AC_HELP_STRING([--enable-dom-storage],
375 [enable HTML5 client-side session and persistent storage support [default=yes]]),
376 [],[enable_dom_storage="yes"])
377 AC_MSG_RESULT([$enable_dom_storage])
379 # check whether to enable the indexed database API
380 AC_MSG_CHECKING([whether to enable the indexed database API])
381 AC_ARG_ENABLE(indexed_database,
382 AC_HELP_STRING([--enable-indexeddb],
383 [enable the indexed database API [default=no]]),
384 [],[enable_indexed_database="no"])
385 AC_MSG_RESULT([$enable_indexed_database])
387 # check whether to enable the speech input API
388 AC_MSG_CHECKING([whether to enable the speech input API])
389 AC_ARG_ENABLE(input_speech,
390 AC_HELP_STRING([--enable-input-speech],
391 [enable the speech input API [default=no]]),
392 [],[enable_input_speech="no"])
393 AC_MSG_RESULT([$enable_input_speech])
395 # check whether to build with database support
396 AC_MSG_CHECKING([whether to enable HTML5 client-side database storage support])
397 AC_ARG_ENABLE(database,
398 AC_HELP_STRING([--enable-database],
399 [enable HTML5 client-side database storage support [default=yes]]),
400 [],[enable_database="yes"])
401 AC_MSG_RESULT([$enable_database])
403 # check whether to build with server-sent events support
404 AC_MSG_CHECKING([whether to enable HTML5 server-sent events support])
405 AC_ARG_ENABLE(eventsource,
406 AC_HELP_STRING([--enable-eventsource],
407 [enable HTML5 server-sent events support [default=yes]]),
408 [],[enable_eventsource="yes"])
409 AC_MSG_RESULT([$enable_eventsource])
411 # check whether to build with icon database support
412 AC_MSG_CHECKING([whether to enable icon database support])
413 AC_ARG_ENABLE(icon_database,
414 AC_HELP_STRING([--enable-icon-database],
415 [enable icon database [default=yes]]),
416 [],[enable_icon_database="yes"])
417 AC_MSG_RESULT([$enable_icon_database])
419 # check whether to build with image resizer API support
420 AC_MSG_CHECKING([whether to enable image resizer API support])
421 AC_ARG_ENABLE(image_resizer,
422 AC_HELP_STRING([--enable-image-resizer],
423 [enable image resizer [default=no]]),
424 [],[enable_image_resizer="no"])
425 AC_MSG_RESULT([$enable_image_resizer])
427 # check whether to enable HTML5 datalist support
428 AC_MSG_CHECKING([whether to enable HTML5 datalist support])
429 AC_ARG_ENABLE(datalist,
430 AC_HELP_STRING([--enable-datalist],
431 [enable HTML5 datalist support [default=yes]]),
432 [],[enable_datalist="yes"])
433 AC_MSG_RESULT([$enable_datalist])
435 # check whether to enable HTML5 ruby support
436 AC_MSG_CHECKING([whether to enable HTML5 ruby support])
438 AC_HELP_STRING([--enable-ruby],
439 [enable HTML5 ruby support [default=yes]]),
440 [],[enable_ruby="yes"])
441 AC_MSG_RESULT([$enable_ruby])
443 # check whether to enable HTML5 sandbox iframe support
444 AC_MSG_CHECKING([whether to enable HTML5 sandboxed iframe support])
445 AC_ARG_ENABLE(sandbox,
446 AC_HELP_STRING([--enable-sandbox],
447 [enable HTML5 sandboxed iframe support [default=yes]]),
448 [],[enable_sandbox="yes"])
449 AC_MSG_RESULT([$enable_sandbox])
451 # check whether to enable HTML5 audio/video support
452 AC_MSG_CHECKING([whether to enable HTML5 video support])
454 AC_HELP_STRING([--enable-video],
455 [enable HTML5 video support [default=yes]]),
456 [],[enable_video="yes"])
457 AC_MSG_RESULT([$enable_video])
459 # check whether to enable XHTML-MP support
460 AC_MSG_CHECKING([whether to enable XHTML-MP support])
461 AC_ARG_ENABLE(xhtmlmp,
462 AC_HELP_STRING([--enable-xhtmlmp],
463 [enable support for XHTML-MP [default=no]]),
464 [],[enable_xhtmlmp="no"])
465 AC_MSG_RESULT([$enable_xhtmlmp])
467 # check whether to enable XPath support
468 AC_MSG_CHECKING([whether to enable XPath support])
470 AC_HELP_STRING([--enable-xpath],
471 [enable support for XPath [default=yes]]),
472 [],[enable_xpath="yes"])
473 AC_MSG_RESULT([$enable_xpath])
475 # check whether to enable XSLT support
476 AC_MSG_CHECKING([whether to enable XSLT support])
478 AC_HELP_STRING([--enable-xslt],
479 [enable support for XSLT [default=yes]]),
480 [],[enable_xslt="yes"])
481 AC_MSG_RESULT([$enable_xslt])
483 # check whether to enable geolocation support
484 AC_MSG_CHECKING([whether to enable geolocation support])
485 AC_ARG_ENABLE(geolocation,
486 AC_HELP_STRING([--enable-geolocation],
487 [enable support for geolocation [default=no]]),
488 [],[enable_geolocation="no"])
489 AC_MSG_RESULT([$enable_geolocation])
491 # check whether to enable MathML support
492 AC_MSG_CHECKING([whether to enable MathML support])
493 AC_ARG_ENABLE(mathml,
494 AC_HELP_STRING([--enable-mathml],
495 [enable support for MathML [default=no]]),
496 [],[enable_mathml="no"])
497 AC_MSG_RESULT([$enable_mathml])
499 # check whether to enable SVG support
500 AC_MSG_CHECKING([whether to enable SVG support])
502 AC_HELP_STRING([--enable-svg],
503 [enable support for SVG [default=yes]]),
504 [],[enable_svg="yes"])
505 AC_MSG_RESULT([$enable_svg])
507 # check whether to enable WML support
508 AC_MSG_CHECKING([whether to enable WML support])
510 AC_HELP_STRING([--enable-wml],
511 [enable support for WML [default=no]]),
512 [],[enable_wml="no"])
513 AC_MSG_RESULT([$enable_wml])
515 # check whether to enable SharedWorkers support
516 AC_MSG_CHECKING([whether to enable SharedWorkers support])
517 AC_ARG_ENABLE(shared_workers,
518 AC_HELP_STRING([--enable-shared-workers],
519 [enable support for SharedWorkers [default=yes]]),
520 [],[enable_shared_workers="yes"])
521 AC_MSG_RESULT([$enable_shared_workers])
523 # check whether to enable Web Workers support
524 AC_MSG_CHECKING([whether to enable Web Workers support])
525 AC_ARG_ENABLE(workers,
526 AC_HELP_STRING([--enable-workers],
527 [enable support for Web Workers [default=yes]]),
528 [],[enable_workers="yes"])
529 AC_MSG_RESULT([$enable_workers])
531 # check whether to enable directory upload support
532 AC_MSG_CHECKING([whether to enable directory upload support])
533 AC_ARG_ENABLE(directory_upload,
534 AC_HELP_STRING([--enable-directory-upload],
535 [enable support for directory upload [default=no]]),
536 [], [enable_directory_upload="no"])
537 AC_MSG_RESULT([$enable_directory_upload])
539 # check whether to enable HTML5 FileSystem API support
540 AC_MSG_CHECKING([whether to enable HTML5 FileSystem API support])
541 AC_ARG_ENABLE(file_system,
542 AC_HELP_STRING([--enable-file-system],
543 [enable support for HTML5 FileSystem API [default=no]]),
544 [], [enable_file_system="no"])
545 AC_MSG_RESULT([$enable_file_system])
547 # turn off svg features if --disable-svg is requested
548 if test "$enable_svg" = "no"; then
549 enable_svg_animation=no
551 enable_svg_foreign_object=no
552 enable_svg_as_image=no
556 # check whether to enable support for SVG animation
557 AC_MSG_CHECKING([whether to enable support for SVG animation])
558 AC_ARG_ENABLE(svg_animation,
559 AC_HELP_STRING([--enable-svg-animation],
560 [enable support for SVG animation (experimental) [default=yes]]),
561 [],[enable_svg_animation="yes"])
562 AC_MSG_RESULT([$enable_svg_animation])
564 # check whether to enable support for filters
565 AC_MSG_CHECKING([whether to enable support for filters])
566 AC_ARG_ENABLE(filters,
567 AC_HELP_STRING([--enable-filters],
568 [enable support for filters (experimental) [default=yes]]),
569 [],[enable_filters="yes"])
570 AC_MSG_RESULT([$enable_filters])
572 # check whether to enable support for SVG fonts
573 AC_MSG_CHECKING([whether to enable support for SVG fonts])
574 AC_ARG_ENABLE(svg_fonts,
575 AC_HELP_STRING([--enable-svg-fonts],
576 [enable support for SVG fonts (experimental) [default=yes]]),
577 [],[enable_svg_fonts="yes"])
578 AC_MSG_RESULT([$enable_svg_fonts])
580 # check whether to enable foreign objects support for SVG
581 AC_MSG_CHECKING([whether to enable support for SVG foreign objects])
582 AC_ARG_ENABLE(svg_foreign_object,
583 AC_HELP_STRING([--enable-svg-foreign-object],
584 [enable support for SVG foreign objects (experimental) [default=yes]]),
585 [],[enable_svg_foreign_object="yes"])
586 AC_MSG_RESULT([$enable_svg_foreign_object])
588 # check whether to enable SVG As Image support
589 AC_MSG_CHECKING([whether to enable SVG as Image support])
590 AC_ARG_ENABLE(svg_as_image,
591 AC_HELP_STRING([--enable-svg-as-image],
592 [enable SVG as Image support (experimental) [default=yes]]),
593 [],[enable_svg_as_image="yes"])
594 AC_MSG_RESULT([$enable_svg_as_image])
596 # check whether to enable SVG USE element support
597 AC_MSG_CHECKING([whether to enable support for SVG use element])
598 AC_ARG_ENABLE(svg_use,
599 AC_HELP_STRING([--enable-svg-use],
600 [enable SVG use element support (experimental) [default=yes]]),
601 [],[enable_svg_use="yes"])
602 AC_MSG_RESULT([$enable_svg_use])
604 # check for SVG features, enabling SVG if necessary
605 if test "$enable_svg_animation" = "yes" || \
606 test "$enable_svg_fonts" = "yes" || \
607 test "$enable_svg_foreign_object" = "yes" || \
608 test "$enable_svg_as_image" = "yes" || \
609 test "$enable_svg_use" = "yes"; then
611 if test "$enable_svg" = "no"; then
612 AC_MSG_WARN([SVG feature(s) requested but SVG is disabled.. Enabling SVG support])
617 # check whether to enable Web Socket support
618 AC_MSG_CHECKING([whether to enable Web Sockets support])
619 AC_ARG_ENABLE(web_sockets,
620 AC_HELP_STRING([--enable-web-sockets],
621 [enable support for Web Sockets [default=no]]),
622 [],[enable_web_sockets="no"])
623 AC_MSG_RESULT([$enable_web_sockets])
625 # check whether to enable Web Timing support
626 AC_MSG_CHECKING([whether to enable Web Timing support])
627 AC_ARG_ENABLE(web_timing,
628 AC_HELP_STRING([--enable-web-timing],
629 [enable support for Web Timing [default=no]]),
630 [],[enable_web_timing="no"])
631 AC_MSG_RESULT([$enable_web_timing])
633 # check whether to enable Blob.slice support
634 AC_MSG_CHECKING([whether to enable Blob.slice support])
635 AC_ARG_ENABLE(blob_slice,
636 AC_HELP_STRING([--enable-blob-slice],
637 [enable support for Blob.slice [default=no]]),
638 [],[enable_blob_slice="no"])
639 AC_MSG_RESULT([$enable_blob_slice])
641 # check whether to enable Fast Mobile Scrolling support
642 AC_MSG_CHECKING([whether to enable Fast Mobile Scrolling])
643 AC_ARG_ENABLE(fast_mobile_scrolling,
644 AC_HELP_STRING([--enable-fast-mobile-scrolling],
645 [enable support for Fast Mobile Scrolling [default=no]]),
646 [],[enable_fast_mobile_scrolling="no"])
647 AC_MSG_RESULT([$enable_fast_mobile_scrolling])
649 # check whether to enable FileReader support
650 AC_MSG_CHECKING([whether to enable FileReader support])
651 AC_ARG_ENABLE(file_reader,
652 AC_HELP_STRING([--enable-file-reader],
653 [enable support for FileReader [default=no]]),
654 [],[enable_file_reader="no"])
655 AC_MSG_RESULT([$enable_file_reader])
657 # check whether to enable FileWriter support
658 AC_MSG_CHECKING([whether to enable FileWriter support])
659 AC_ARG_ENABLE(file_writer,
660 AC_HELP_STRING([--enable-file-writer],
661 [enable support for FileWriter [default=no]]),
662 [],[enable_file_writer="no"])
663 AC_MSG_RESULT([$enable_file_writer])
665 # check whether to enable code coverage
666 AC_MSG_CHECKING([whether to enable code coverage support])
667 AC_ARG_ENABLE(coverage,
668 AC_HELP_STRING([--enable-coverage],
669 [enable code coverage support [default=no]]),
670 [],[enable_coverage="no"])
671 AC_MSG_RESULT([$enable_coverage])
673 # check whether to enable FastMalloc
674 AC_MSG_CHECKING([whether to enable optimized memory allocator])
675 AC_ARG_ENABLE(fast_malloc,
676 AC_HELP_STRING([--enable-fast-malloc],
677 [enable optimized memory allocator default=yes, default=no for debug builds]),
678 [],[if test "$enable_debug" = "yes"; then enable_fast_malloc="no"; else enable_fast_malloc="yes"; fi])
679 AC_MSG_RESULT([$enable_fast_malloc])
681 AC_MSG_CHECKING([whether to enable JIT compilation])
683 AC_HELP_STRING([--enable-jit],
684 [Enable JIT compilation default=yes]),
685 [],[enable_jit="yes"])
686 if test "$enable_jit" = "yes"; then
689 AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
690 AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
691 AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
694 AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
695 AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
696 AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
697 AC_DEFINE([ENABLE_JIT_OPTIMIZE_CALL], [1], [Define to enable optimizing calls])
698 AC_DEFINE([ENABLE_JIT_OPTIMIZE_PROPERTY_ACCESS], [1], [Define to enable optimized property access])
699 AC_DEFINE([ENABLE_JIT_OPTIMIZE_ARITHMETIC], [1], [Define to enable optimized arithmetic])
702 AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_VA_LIST], [1], [Use stub va_list])
705 AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_REGISTER], [1], [Use stub register])
706 AC_DEFINE([WTF_USE_ALTERNATE_JSIMMEDIATE], [1], [Use alternate JSImmediate])
711 enable_jit="no (CPU '$host_cpu' not supported)"
715 AC_MSG_RESULT([$enable_jit])
717 # GObject Introspection
718 AC_MSG_CHECKING([whether to enable GObject introspection support])
719 AC_ARG_ENABLE([introspection],
720 [AS_HELP_STRING([--enable-introspection],[Enable GObject introspection (default: disabled)])],
721 [],[enable_introspection=no])
722 AC_MSG_RESULT([$enable_introspection])
730 if test "$enable_introspection" = "yes"; then
731 GOBJECT_INTROSPECTION_REQUIRED=0.6.15
732 PKG_CHECK_MODULES([INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
734 G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
735 G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
736 G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
737 AC_DEFINE([ENABLE_INTROSPECTION],[1],[Define to enable GObject introspection support])
740 AC_SUBST([G_IR_SCANNER])
741 AC_SUBST([G_IR_COMPILER])
742 AC_SUBST([G_IR_GENERATE])
744 # determine the font backend
745 AC_MSG_CHECKING([the font backend to use])
746 AC_ARG_WITH(font_backend,
747 AC_HELP_STRING([--with-font-backend=@<:@freetype/pango@:>@],
748 [Select font backend [default=freetype]]),
749 [],[with_font_backend="freetype"])
751 case "$with_font_backend" in
753 *) AC_MSG_ERROR([Invalid font backend: must be freetype or pango.]) ;;
755 AC_MSG_RESULT([$with_font_backend])
757 # Add '-g' flag to gcc if it's debug build
758 if test "$enable_debug" = "yes"; then
759 CXXFLAGS="$CXXFLAGS -g"
762 AC_DEFINE([NDEBUG], [1], [Define to disable debugging features])
765 # Add the appropriate 'O' level for optimized builds
766 if test "$enable_optimizations" = "yes"; then
767 CXXFLAGS="$CXXFLAGS -O2"
770 CXXFLAGS="$CXXFLAGS -O0"
774 PKG_CHECK_MODULES([LIBSOUP],
775 [libsoup-2.4 >= $LIBSOUP_REQUIRED_VERSION])
776 AC_SUBST([LIBSOUP_CFLAGS])
777 AC_SUBST([LIBSOUP_LIBS])
779 # check if we can use libSoup 2.29.90 features
780 PKG_CHECK_MODULES([LIBSOUP_2_29_90],
781 [libsoup-2.4 >= 2.29.90],
782 [have_libsoup_2_29_90=yes],
783 [have_libsoup_2_29_90=no])
784 if test "$have_libsoup_2_29_90" = "yes"; then
785 AC_DEFINE([HAVE_LIBSOUP_2_29_90], 1, [Whether libSoup 2.29.90 features are available])
788 # check if FreeType/FontConfig are available
789 if test "$with_font_backend" = "freetype"; then
790 if test "$with_target" = "directfb"; then
791 PKG_CHECK_MODULES([FREETYPE],
792 [fontconfig >= $FONTCONFIG_REQUIRED_VERSION
793 freetype2 >= $FREETYPE2_REQUIRED_VERSION])
795 PKG_CHECK_MODULES([FREETYPE],
797 fontconfig >= $FONTCONFIG_REQUIRED_VERSION
798 freetype2 >= $FREETYPE2_REQUIRED_VERSION])
800 AC_SUBST([FREETYPE_CFLAGS])
801 AC_SUBST([FREETYPE_LIBS])
804 # check if sqlite 3 is available
805 if test "$enable_icon_database" = "yes" || \
806 test "$enable_database" = "yes" || \
807 test "$enable_offline_web_applications" = "yes" || \
808 test "$enable_dom_storage" = "yes"; then
809 PKG_CHECK_MODULES([SQLITE3],
810 [sqlite3 >= $SQLITE_REQUIRED_VERSION],
811 [sqlite3_has_pkg_config=yes],
812 [sqlite3_has_pkg_config=no])
813 if test "$sqlite3_has_pkg_config" = "no"; then
814 AC_SEARCH_LIBS([sqlite3_open16], [sqlite3],
815 [SQLITE3_LIBS="$LIBS";SQLITE3_CFLAGS="-I $srcdir/WebKitLibraries/WebCoreSQLite3"],
816 [AC_MSG_ERROR([SQLite3 is required to enable Database support])])
818 AC_SUBST([SQLITE3_CFLAGS])
819 AC_SUBST([SQLITE3_LIBS])
822 # check if libxslt is available
823 if test "$enable_xslt" = "yes"; then
824 PKG_CHECK_MODULES([LIBXSLT],[libxslt >= $LIBXSLT_REQUIRED_VERSION])
825 AC_SUBST([LIBXSLT_CFLAGS])
826 AC_SUBST([LIBXSLT_LIBS])
829 # check if geoclue is available
830 if test "$enable_geolocation" = "yes"; then
831 PKG_CHECK_MODULES([GEOCLUE], [geoclue])
832 AC_SUBST([GEOCLUE_CFLAGS])
833 AC_SUBST([GEOCLUE_LIBS])
836 # check if gstreamer is available
837 if test "$enable_video" = "yes"; then
838 PKG_CHECK_MODULES([GSTREAMER],
839 [gstreamer-0.10 >= $GSTREAMER_REQUIRED_VERSION
842 gstreamer-pbutils-0.10
843 gstreamer-plugins-base-0.10 >= $GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION
844 gstreamer-video-0.10])
845 AC_SUBST([GSTREAMER_CFLAGS])
846 AC_SUBST([GSTREAMER_LIBS])
849 # check for code coverage support
850 if test "$enable_coverage" = "yes"; then
851 COVERAGE_CFLAGS="-MD"
852 COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
853 AC_SUBST([COVERAGE_CFLAGS])
854 AC_SUBST([COVERAGE_LDFLAGS])
857 # check for HTML features
858 if test "$enable_video" = "yes"; then
862 GTK_DOC_CHECK([1.10])
865 AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
866 AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
867 AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
868 AM_CONDITIONAL([OS_GNU],[test "$os_gnu" = "yes"])
869 AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
871 # target conditionals
872 AM_CONDITIONAL([TARGET_X11], [test "$with_target" = "x11"])
873 AM_CONDITIONAL([TARGET_WIN32], [test "$with_target" = "win32"])
874 AM_CONDITIONAL([TARGET_QUARTZ], [test "$with_target" = "quartz"])
875 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_target" = "directfb"])
877 # Unicode backend conditionals
878 AM_CONDITIONAL([USE_ICU_UNICODE], [test "$with_unicode_backend" = "icu"])
879 AM_CONDITIONAL([USE_GLIB_UNICODE], [test "$with_unicode_backend" = "glib"])
881 # Font backend conditionals
882 AM_CONDITIONAL([USE_FREETYPE], [test "$with_font_backend" = "freetype"])
883 AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"])
885 # WebKit feature conditionals
886 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"])
887 AM_CONDITIONAL([ENABLE_3D_TRANSFORMS],[test "$enable_3D_transforms" = "yes"])
888 AM_CONDITIONAL([ENABLE_BLOB_SLICE],[test "$enable_blob_slice" = "yes"])
889 AM_CONDITIONAL([ENABLE_CHANNEL_MESSAGING],[test "$enable_channel_messaging" = "yes"])
890 AM_CONDITIONAL([ENABLE_JAVASCRIPT_DEBUGGER],[test "$enable_javascript_debugger" = "yes"])
891 AM_CONDITIONAL([ENABLE_OFFLINE_WEB_APPLICATIONS],[test "$enable_offline_web_applications" = "yes"])
892 AM_CONDITIONAL([ENABLE_DIRECTORY_UPLOAD],[test "$enable_directory_upload" = "yes"])
893 AM_CONDITIONAL([ENABLE_DOM_STORAGE],[test "$enable_dom_storage" = "yes"])
894 AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"])
895 AM_CONDITIONAL([ENABLE_DATALIST],[test "$enable_datalist" = "yes"])
896 AM_CONDITIONAL([ENABLE_EVENTSOURCE],[test "$enable_eventsource" = "yes"])
897 AM_CONDITIONAL([ENABLE_FAST_MOBILE_SCROLLING],[test "$enable_fast_mobile_scrolling" = "yes"])
898 AM_CONDITIONAL([ENABLE_FILE_SYSTEM],[test "$enable_file_system" = "yes"])
899 AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
900 AM_CONDITIONAL([ENABLE_IMAGE_RESIZER],[test "$enable_image_resizer" = "yes"])
901 AM_CONDITIONAL([ENABLE_INDEXED_DATABASE],[test "$enable_indexed_database" = "yes"])
902 AM_CONDITIONAL([ENABLE_INPUT_SPEECH],[test "$enable_input_speech" = "yes"])
903 AM_CONDITIONAL([ENABLE_XHTMLMP],[test "$enable_xhtmlmp" = "yes"])
904 AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"])
905 AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
906 AM_CONDITIONAL([ENABLE_FILTERS],[test "$enable_filters" = "yes"])
907 AM_CONDITIONAL([ENABLE_FILE_READER],[test "$enable_file_reader" = "yes"])
908 AM_CONDITIONAL([ENABLE_FILE_WRITER],[test "$enable_file_writer" = "yes"])
909 AM_CONDITIONAL([ENABLE_GEOLOCATION], [test "$enable_geolocation" = "yes"])
910 AM_CONDITIONAL([ENABLE_MATHML], [test "$enable_mathml" = "yes"])
911 AM_CONDITIONAL([ENABLE_RUBY],[test "$enable_ruby" = "yes"])
912 AM_CONDITIONAL([ENABLE_SANDBOX],[test "$enable_sandbox" = "yes"])
913 AM_CONDITIONAL([ENABLE_VIDEO],[test "$enable_video" = "yes"])
914 AM_CONDITIONAL([ENABLE_NOTIFICATIONS],[test "$enable_notifications" = "yes"])
915 AM_CONDITIONAL([ENABLE_ORIENTATION_EVENTS],[test "$enable_orientation_events" = "yes"])
916 AM_CONDITIONAL([ENABLE_SVG],[test "$enable_svg" = "yes"])
917 AM_CONDITIONAL([ENABLE_SVG_ANIMATION],[test "$enable_svg_animation" = "yes"])
918 AM_CONDITIONAL([ENABLE_SVG_FONTS],[test "$enable_svg_fonts" = "yes"])
919 AM_CONDITIONAL([ENABLE_SVG_FOREIGN_OBJECT],[test "$enable_svg_foreign_object" = "yes"])
920 AM_CONDITIONAL([ENABLE_SVG_AS_IMAGE],[test "$enable_svg_as_image" = "yes"])
921 AM_CONDITIONAL([ENABLE_SVG_USE],[test "$enable_svg_use" = "yes"])
922 AM_CONDITIONAL([ENABLE_COVERAGE],[test "$enable_coverage" = "yes"])
923 AM_CONDITIONAL([ENABLE_FAST_MALLOC],[test "$enable_fast_malloc" = "yes"])
924 AM_CONDITIONAL([ENABLE_WML],[test "$enable_wml" = "yes"])
925 AM_CONDITIONAL([ENABLE_WORKERS],[test "$enable_workers" = "yes"])
926 AM_CONDITIONAL([ENABLE_SHARED_WORKERS],[test "$enable_shared_workers" = "yes"])
927 AM_CONDITIONAL([SVG_FLAGS],[test "$svg_flags" = "yes"])
928 AM_CONDITIONAL([HTML_FLAGS],[test "$html_flags" = "yes"])
929 AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"])
930 AM_CONDITIONAL([ENABLE_WEB_TIMING],[test "$enable_web_timing" = "yes"])
933 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
938 WebKit/gtk/webkit/webkitversion.h
939 WebKit/gtk/docs/GNUmakefile
940 WebKit/gtk/docs/version.xml
945 WebKit/gtk/${WEBKITGTK_PC_NAME}-${WEBKITGTK_API_VERSION}.pc:WebKit/gtk/webkit.pc.in
946 WebKit/gtk/JSCore-${WEBKITGTK_API_VERSION}.gir:WebKit/gtk/JSCore.gir.in]
947 ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
953 WebKit was configured with the following options:
956 Enable debugging (slow) : $enable_debug
957 Enable GCC build optimization : $enable_optimizations
958 Code coverage support : $enable_coverage
959 Unicode backend : $with_unicode_backend
960 Font backend : $with_font_backend
961 Optimized memory allocator : $enable_fast_malloc
963 3D Transforms : $enable_3D_transforms
964 Blob.slice support : $enable_blob_slice
965 Directory upload : $enable_directory_upload
966 Fast Mobile Scrolling : $enable_fast_mobile_scrolling
967 JIT compilation : $enable_jit
968 Filters support : $enable_filters
969 FileReader support : $enable_file_reader
970 FileWriter support : $enable_file_writer
971 Geolocation support : $enable_geolocation
972 JavaScript debugger/profiler support : $enable_javascript_debugger
973 MathML support : $enable_mathml
974 HTML5 offline web applications support : $enable_offline_web_applications
975 HTML5 channel messaging support : $enable_channel_messaging
976 HTML5 client-side session and persistent storage support : $enable_dom_storage
977 HTML5 client-side database storage support : $enable_database
978 HTML5 FileSystem API support : $enable_file_system
979 HTML5 ruby support : $enable_ruby
980 HTML5 sandboxed iframe support : $enable_sandbox
981 HTML5 server-sent events support : $enable_eventsource
982 HTML5 video element support : $enable_video
983 Icon database support : $enable_icon_database
984 Image resizer support : $enable_image_resizer
985 SharedWorkers support : $enable_shared_workers
986 Speech input support : $enable_input_speech
987 SVG support : $enable_svg
988 SVG animation support : $enable_svg_animation
989 SVG fonts support : $enable_svg_fonts
990 SVG foreign object support : $enable_svg_foreign_object
991 SVG as image support : $enable_svg_as_image
992 SVG use element support : $enable_svg_use
993 WML support : $enable_wml
994 Web Sockets support : $enable_web_sockets
995 Web Timing support : $enable_web_timing
996 Web Workers support : $enable_workers
997 XHTML-MP support : $enable_xhtmlmp
998 XPATH support : $enable_xpath
999 XSLT support : $enable_xslt
1001 GTK+ version : $with_gtk
1002 GDK target : $with_target
1003 Hildon UI extensions : $with_hildon
1004 Introspection support : $enable_introspection
1006 if test "$with_unicode_backend" = "glib"; then
1007 echo " >> WARNING: the glib-based unicode backend is slow and incomplete <<"