OSDN Git Service

Merge WebKit at r80534: Fix CSSComputedStyleDeclaration.cpp
[android-x86/external-webkit.git] / configure.ac
1 AC_PREREQ(2.59)
2
3 m4_define([webkit_major_version], [1])
4 m4_define([webkit_minor_version], [3])
5 m4_define([webkit_micro_version], [12])
6
7 # This is the version we'll be using as part of our User-Agent string
8 # e.g., AppleWebKit/$(webkit_user_agent_version) ...
9 #
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], [21])
13
14 AC_INIT([WebKit],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
15
16 AC_CONFIG_MACRO_DIR([Source/autotools])
17 AC_CONFIG_AUX_DIR([Source/autotools])
18 AC_SUBST(ACLOCAL_AMFLAGS, "-I Source/autotools")
19
20 AC_CONFIG_HEADERS([autotoolsconfig.h])
21 AC_CANONICAL_HOST
22
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)
33
34 AC_CONFIG_SRCDIR([Source/WebCore/config.h])
35
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=5:4:5
39 AC_SUBST([LIBWEBKITGTK_VERSION])
40
41 AM_INIT_AUTOMAKE([foreign subdir-objects tar-ustar])
42
43 # Use AM_SILENT_RULES if present
44 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
45
46 # host checking - inspired by the GTK+ configure.in
47 # TODO: move these to webkit.m4?
48 AC_MSG_CHECKING([for native Win32])
49 case "$host" in
50      *-*-mingw*)
51        os_win32=yes
52        ;;
53      *)
54        os_win32=no
55        ;;
56 esac
57 AC_MSG_RESULT([$os_win32])
58
59 case "$host" in
60      *-*-linux*)
61        os_linux=yes
62        ;;
63      *-*-freebsd*)
64        os_freebsd=yes
65        ;;
66      *-*-darwin*)
67        os_darwin=yes
68        ;;
69 esac
70
71 case "$host_os" in
72      gnu* | linux* | k*bsd*-gnu)
73        os_gnu=yes
74        ;;
75      *)
76        os_gnu=no
77        ;;
78 esac
79
80 # initialize webkit options
81 WEBKIT_INIT
82 AC_DISABLE_STATIC
83 AC_LIBTOOL_WIN32_DLL
84 AC_PROG_LIBTOOL
85 # use dolt to speedup the build
86 DOLT
87
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])
91 else
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]))
95 fi
96
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])
100 fi
101
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]))
107 fi
108
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])
115    AC_TRY_CPP(
116 [#include <stdio.h>
117 #undef PACKAGE
118 #undef VERSION
119 #undef HAVE_STDLIB_H
120 #include <jpeglib.h>],
121          jpeg_ok=yes,
122          jpeg_ok=no)
123    AC_MSG_RESULT($jpeg_ok)
124    if test "$jpeg_ok" = yes; then
125       JPEG_LIBS="-ljpeg"
126       # should we check for progressive JPEG like GTK+ as well?
127    else
128       AC_MSG_ERROR([JPEG library (libjpeg) not found])
129    fi
130 fi
131 AC_SUBST([JPEG_LIBS])
132
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
137     AC_MSG_RESULT(yes)
138     PNG_LIBS=`$PKG_CONFIG --libs $l`
139     png_ok=yes
140     break
141   else
142     AC_MSG_RESULT(no)
143     png_ok=no
144   fi
145 done
146 if test "$png_ok" != yes; then
147   AC_CHECK_LIB(png, png_read_info,
148     [AC_CHECK_HEADER(png.h,
149       png_ok=yes,
150       png_ok=no)],
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;],
156       png_ok=yes,
157       png_ok=no)
158     AC_MSG_RESULT($png_ok)
159     if test "$png_ok" = yes; then
160       PNG_LIBS='-lpng -lz'
161     else
162       AC_MSG_ERROR([PNG library (libpng) not found])
163     fi
164   else
165     AC_MSG_ERROR([PNG library (libpng) not found])
166   fi
167 fi
168 AC_SUBST([PNG_LIBS])
169
170
171 if test "$os_win32" = "yes"; then
172   WINMM_LIBS=-lwinmm
173   SHLWAPI_LIBS=-lshlwapi
174   OLE32_LIBS=-lole32
175 fi
176 AC_SUBST([WINMM_LIBS])
177 AC_SUBST([SHLWAPI_LIBS])
178 AC_SUBST([OLE32_LIBS])
179
180
181 # determine the GTK+ version to use
182 AC_MSG_CHECKING([the GTK+ version to use])
183 AC_ARG_WITH([gtk],
184         [AS_HELP_STRING([--with-gtk=2.0|3.0], [the GTK+ version to use (default: 2.0)])],
185         [case "$with_gtk" in
186         2.0|3.0) ;;
187         *) AC_MSG_ERROR([invalid GTK+ version specified]) ;;
188         esac],
189         [with_gtk=2.0])
190 AC_MSG_RESULT([$with_gtk])
191
192 case "$with_gtk" in
193      2.0) GTK_REQUIRED_VERSION=2.10
194           GTK_API_VERSION=2.0
195           WEBKITGTK_API_MAJOR_VERSION=1
196           WEBKITGTK_API_MINOR_VERSION=0
197           WEBKITGTK_API_VERSION=1.0
198           WEBKITGTK_PC_NAME=webkit
199           GAIL_PC_NAME=gail
200           GAIL_REQUIRED_VERSION=1.8
201           ;;
202      3.0) GTK_REQUIRED_VERSION=3.0
203           GTK_API_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
210           ;;
211 esac
212
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"])
219
220 # determine the GDK/GTK+ target
221 AC_MSG_CHECKING([the target windowing system])
222 AC_ARG_WITH(target,
223             AC_HELP_STRING([--with-target=@<:@x11/win32/quartz/directfb@:>@],
224                            [Select webkit target [default=x11]]),
225             [],[with_target="x11"])
226
227 case "$with_target" in
228      x11|win32|quartz|directfb) ;;
229      *) AC_MSG_ERROR([Invalid target: must be x11, quartz, win32, or directfb.]) ;;
230 esac
231
232 AC_MSG_RESULT([$with_target])
233
234 AC_MSG_CHECKING([for Hildon UI extensions])
235 AC_ARG_WITH(hildon,
236             AC_HELP_STRING([--with-hildon],
237                            [Use Hildon UI extensions [default=no]]),
238             [],[with_hildon="no"])
239 AC_MSG_RESULT([$with_hildon])
240
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])
247 fi
248
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
255
256 # minimum GTK+ base dependencies
257 PANGO_REQUIRED_VERSION=1.12
258
259 # optional modules
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
265
266 # Available modules
267 #
268 # glib - glib and includes gthread
269 # unicode - check and identify which unicode backend to use
270 #
271 # todo: webcore gtk
272 WEBKIT_CHECK_DEPENDENCIES([glib unicode])
273
274 # Check if we can use GSettings
275 PKG_CHECK_MODULES([GSETTINGS],
276                   [gio-2.0 >= 2.25.0],
277                   [have_gsettings=yes],
278                   [have_gsettings=no])
279 if test "$have_gsettings" = "yes"; then
280    AC_DEFINE([HAVE_GSETTINGS], 1, [Whether we can use GSettings])
281    GLIB_GSETTINGS
282 fi
283
284 GETTEXT_PACKAGE=$PACKAGE-$GTK_API_VERSION
285 AC_SUBST(GETTEXT_PACKAGE)
286 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
287                    [The gettext catalog name])
288
289 PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= $LIBXML_REQUIRED_VERSION)
290 AC_SUBST(LIBXML_CFLAGS)
291 AC_SUBST(LIBXML_LIBS)
292
293 PKG_CHECK_MODULES(PANGO, 
294                   [pango >= $PANGO_REQUIRED_VERSION
295                    pangoft2])
296 AC_SUBST(PANGO_CFLAGS)
297 AC_SUBST(PANGO_LIBS)
298
299 AC_MSG_CHECKING([whether to enable spellcheck support])
300 AC_ARG_ENABLE([spellcheck],
301   [AS_HELP_STRING([--enable-spellcheck],[enable support for spellcheck])],
302   [],[enable_spellcheck="yes"])
303 AC_MSG_RESULT([$enable_spellcheck])
304
305 if test "$enable_spellcheck" = "yes"; then
306 PKG_CHECK_MODULES(ENCHANT, enchant >= $ENCHANT_REQUIRED_VERSION, [], [enable_spellcheck="no"])
307 AC_SUBST(ENCHANT_CFLAGS)
308 AC_SUBST(ENCHANT_LIBS)
309 fi
310
311 PKG_CHECK_MODULES(GAIL, $GAIL_PC_NAME >= $GAIL_REQUIRED_VERSION)
312 AC_SUBST(GAIL_CFLAGS)
313 AC_SUBST(GAIL_LIBS)
314
315 # check for target-specific dependencies
316 if test "$with_target" = "directfb"; then
317    PKG_CHECK_MODULES(CAIRO, cairo-directfb >= $CAIRO_REQUIRED_VERSION)
318    PKG_CHECK_MODULES(GTK, gtk+-directfb-2.0 >= $GTK_REQUIRED_VERSION)
319    AC_DEFINE([WTF_PLATFORM_DIRECTFB],[1],[Define if target is DirectFB])
320 else
321    PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)
322    PKG_CHECK_MODULES(GTK, gtk+-$GTK_API_VERSION >= $GTK_REQUIRED_VERSION)
323
324    if test "$with_target" = "x11" && test "$os_win32" = "no"; then
325       # check for XT
326       PKG_CHECK_MODULES([XT],
327                         [xt],
328                         [xt_has_pkg_config=yes],
329                         [xt_has_pkg_config=no])
330       # some old versions of Xt do not provide xt.pc, so try to link against Xt
331       # and if it's installed fall back to just adding -lXt
332       if test "$xt_has_pkg_config" = "no"; then
333          # using AC_CHECK_LIB instead of AC_SEARCH_LIB is fine in this case as
334          # we don't care about the XtOpenDisplay symbol but only about the
335          # existence of libXt
336          AC_CHECK_LIB([Xt], [XtOpenDisplay],
337                       [XT_CFLAGS=""; XT_LIBS="-lXt"],
338                       [AC_MSG_ERROR([X Toolkit Intrinsics library (libXt) not found])])
339       fi
340       AC_SUBST([XT_CFLAGS])
341       AC_SUBST([XT_LIBS])
342       AC_DEFINE([WTF_PLATFORM_X11],[1],[Define if target is X11])
343    fi
344 fi
345 AC_SUBST(GTK_CFLAGS)
346 AC_SUBST(GTK_LIBS)
347 AC_SUBST(CAIRO_CFLAGS)
348 AC_SUBST(CAIRO_LIBS)
349
350 # check whether to build with debugging enabled
351 AC_MSG_CHECKING([whether to do a debug build])
352 AC_ARG_ENABLE(debug,
353               AC_HELP_STRING([--enable-debug],
354                              [turn on debugging [default=no]]),
355               [],[enable_debug="no"])
356 AC_MSG_RESULT([$enable_debug])
357
358 # check whether to enable optimized builds
359 AC_MSG_CHECKING([whether to enable optimized builds])
360 AC_ARG_ENABLE(optimizations,
361               AC_HELP_STRING([--enable-optimizations],
362                              [turn on optimize builds (GCC only)
363                              [default=yes]]),
364               [enable_optimizations=$enableval],
365               [if test "$enable_debug" = "yes"; then enable_optimizations="no"; else enable_optimizations="yes"; fi])
366 AC_MSG_RESULT([$enable_optimizations])
367
368 # check whether to enable 3D transforms support
369 AC_MSG_CHECKING([whether to enable support for 3D Transforms])
370 AC_ARG_ENABLE(3d_transforms,
371               AC_HELP_STRING([--enable-3d-transforms],
372                              [enable support for 3D transforms [default=no]]),
373               [],[enable_3d_transforms="no"])
374 AC_MSG_RESULT([$enable_3d_transforms])
375
376 # check whether to enable 3D canvas (WebGL) support
377 AC_MSG_CHECKING([whether to enable 3D canvas (WebGL) support])
378 AC_ARG_ENABLE(3D_canvas,
379               AC_HELP_STRING([--enable-3D-canvas],
380                              [enable support for 3D canvas (WebGL) [default=yes]]),
381               [], [enable_3D_canvas="no"])
382 AC_MSG_RESULT([$enable_3D_canvas])
383
384 # check whether to enable channel messaging support
385 AC_MSG_CHECKING([whether to enable HTML5 Channel Messaging support])
386 AC_ARG_ENABLE(channel_messaging,
387               AC_HELP_STRING([--enable-channel-messaging],
388                              [enable HTML5 channel messaging support [default=yes]]),
389               [],[enable_channel_messaging="yes"])
390 AC_MSG_RESULT([$enable_channel_messaging])
391
392 # check whether to enable notifications
393 AC_MSG_CHECKING([whether to enable notifications])
394 AC_ARG_ENABLE(notifications,
395               AC_HELP_STRING([--enable-notifications],
396                              [enable notifications [default=no]]),
397               [],[enable_notifications="no"])
398 AC_MSG_RESULT([$enable_notifications])
399
400 # check whether to enable the meter tag
401 AC_MSG_CHECKING([whether to enable HTML5 meter tag])
402 AC_ARG_ENABLE(meter_tag,
403               AC_HELP_STRING([--enable-meter-tag],
404                              [enable HTML5 meter [default=yes]]),
405               [],[enable_meter_tag="yes"])
406 AC_MSG_RESULT([$enable_meter_tag])
407
408 # check whether to enable the progress tag
409 AC_MSG_CHECKING([whether to enable HTML5 progress tag])
410 AC_ARG_ENABLE(progress_tag,
411               AC_HELP_STRING([--enable-progress-tag],
412                              [enable HTML5 progress [default=yes]]),
413               [],[enable_progress_tag="yes"])
414 AC_MSG_RESULT([$enable_progress_tag])
415
416 # check whether to enable JavaScript debugger/profiler support
417 AC_MSG_CHECKING([whether to enable JavaScript debugger/profiler support])
418 AC_ARG_ENABLE(javascript_debugger,
419               AC_HELP_STRING([--enable-javascript-debugger],
420                              [enable JavaScript debugger/profiler support [default=yes]]),
421               [],[enable_javascript_debugger="yes"])
422 AC_MSG_RESULT([$enable_javascript_debugger])
423
424 # check whether to build with datagrid support
425 AC_MSG_CHECKING([whether to enable HTML5 datagrid support])
426 AC_ARG_ENABLE(datagrid,
427               AC_HELP_STRING([--enable-datagrid],
428                              [enable HTML5 datagrid support [default=no]]),
429               [],[enable_datagrid="no"])
430 AC_MSG_RESULT([$enable_datagrid])
431
432 # check whether to build with data transfer items support
433 AC_MSG_CHECKING([whether to enable HTML5 data transfer items support])
434 AC_ARG_ENABLE(data_transfer_items,
435               AC_HELP_STRING([--enable-data-transfer-items],
436                              [enable HTML5 data transfer items support [default=no]]),
437               [],[enable_data_transfer_items="no"])
438 AC_MSG_RESULT([$enable_data_transfer_items])
439
440 # check whether to enable HTML5 Offline Web Applications support
441 AC_MSG_CHECKING([whether to enable HTML5 offline web applications support])
442 AC_ARG_ENABLE(offline_web_applications,
443               AC_HELP_STRING([--enable-offline-web-applications],
444                              [enable HTML5 offline web applications support [default=yes]]),
445               [],[enable_offline_web_applications="yes"])
446 AC_MSG_RESULT([$enable_offline_web_applications])
447
448 # check whether to enable HTML5 client-side session and persitent storage support
449 AC_MSG_CHECKING([whether to enable HTML5 client-side session and persistent storage support])
450 AC_ARG_ENABLE(dom_storage,
451               AC_HELP_STRING([--enable-dom-storage],
452                              [enable HTML5 client-side session and persistent storage support [default=yes]]),
453               [],[enable_dom_storage="yes"])
454 AC_MSG_RESULT([$enable_dom_storage])
455
456 # check whether to enable the indexed database API
457 AC_MSG_CHECKING([whether to enable the indexed database API])
458 AC_ARG_ENABLE(indexed_database,
459               AC_HELP_STRING([--enable-indexeddb],
460                              [enable the indexed database API [default=no]]),
461               [],[enable_indexed_database="no"])
462 AC_MSG_RESULT([$enable_indexed_database])
463
464 # check whether to enable the speech input API
465 AC_MSG_CHECKING([whether to enable the speech input API])
466 AC_ARG_ENABLE(input_speech,
467               AC_HELP_STRING([--enable-input-speech],
468                              [enable the speech input API [default=no]]),
469               [],[enable_input_speech="no"])
470 AC_MSG_RESULT([$enable_input_speech])
471
472 # check whether to build with database support
473 AC_MSG_CHECKING([whether to enable HTML5 client-side database storage support])
474 AC_ARG_ENABLE(database,
475               AC_HELP_STRING([--enable-database],
476                              [enable HTML5 client-side database storage support [default=yes]]),
477               [],[enable_database="yes"])
478 AC_MSG_RESULT([$enable_database])
479
480 # check whether to build with server-sent events support
481 AC_MSG_CHECKING([whether to enable HTML5 server-sent events support])
482 AC_ARG_ENABLE(eventsource,
483               AC_HELP_STRING([--enable-eventsource],
484                              [enable HTML5 server-sent events support [default=yes]]),
485               [],[enable_eventsource="yes"])
486 AC_MSG_RESULT([$enable_eventsource])
487
488 # check whether to build with icon database support
489 AC_MSG_CHECKING([whether to enable icon database support])
490 AC_ARG_ENABLE(icon_database,
491               AC_HELP_STRING([--enable-icon-database],
492                              [enable icon database [default=yes]]),
493               [],[enable_icon_database="yes"])
494 AC_MSG_RESULT([$enable_icon_database])
495
496 # check whether to build with image resizer API support
497 AC_MSG_CHECKING([whether to enable image resizer API support])
498 AC_ARG_ENABLE(image_resizer,
499               AC_HELP_STRING([--enable-image-resizer],
500                              [enable image resizer [default=no]]),
501               [],[enable_image_resizer="no"])
502 AC_MSG_RESULT([$enable_image_resizer])
503
504 # check whether to enable HTML5 datalist support
505 AC_MSG_CHECKING([whether to enable HTML5 datalist support])
506 AC_ARG_ENABLE(datalist,
507               AC_HELP_STRING([--enable-datalist],
508                              [enable HTML5 datalist support [default=yes]]),
509               [],[enable_datalist="yes"])
510 AC_MSG_RESULT([$enable_datalist])
511
512 # check whether to enable HTML5 sandbox iframe support
513 AC_MSG_CHECKING([whether to enable HTML5 sandboxed iframe support])
514 AC_ARG_ENABLE(sandbox,
515               AC_HELP_STRING([--enable-sandbox],
516                              [enable HTML5 sandboxed iframe support [default=yes]]),
517               [],[enable_sandbox="yes"])
518 AC_MSG_RESULT([$enable_sandbox])
519
520 # check whether to enable HTML5 audio/video support
521 AC_MSG_CHECKING([whether to enable HTML5 video support])
522 AC_ARG_ENABLE(video,
523               AC_HELP_STRING([--enable-video],
524                              [enable HTML5 video support [default=yes]]),
525               [],[enable_video="yes"])
526 AC_MSG_RESULT([$enable_video])
527
528 # check whether to enable Javascript Fullscreen API support
529 AC_MSG_CHECKING([whether to enable Fullscreen API support])
530 AC_ARG_ENABLE(fullscreen_api,
531               AC_HELP_STRING([--enable-fullscreen-api],
532                              [enable the Fullscreen API support [default=yes]]),
533               [],[enable_fullscreen_api="yes"])
534 AC_MSG_RESULT([$enable_fullscreen_api])
535
536 # check whether to enable XHTML-MP support
537 AC_MSG_CHECKING([whether to enable XHTML-MP support])
538 AC_ARG_ENABLE(xhtmlmp,
539               AC_HELP_STRING([--enable-xhtmlmp],
540                              [enable support for XHTML-MP [default=no]]),
541               [],[enable_xhtmlmp="no"])
542 AC_MSG_RESULT([$enable_xhtmlmp])
543
544 # check whether to enable XPath support
545 AC_MSG_CHECKING([whether to enable XPath support])
546 AC_ARG_ENABLE(xpath,
547               AC_HELP_STRING([--enable-xpath],
548                              [enable support for XPath [default=yes]]),
549               [],[enable_xpath="yes"])
550 AC_MSG_RESULT([$enable_xpath])
551
552 # check whether to enable XSLT support
553 AC_MSG_CHECKING([whether to enable XSLT support])
554 AC_ARG_ENABLE(xslt,
555               AC_HELP_STRING([--enable-xslt],
556                              [enable support for XSLT [default=yes]]),
557               [],[enable_xslt="yes"])
558 AC_MSG_RESULT([$enable_xslt])
559
560 # check whether to enable geolocation support
561 AC_MSG_CHECKING([whether to enable geolocation support])
562 AC_ARG_ENABLE(geolocation,
563               AC_HELP_STRING([--enable-geolocation],
564                              [enable support for geolocation [default=no]]),
565               [],[enable_geolocation="no"])
566 AC_MSG_RESULT([$enable_geolocation])
567
568 # check whether to enable client-based geolocation support
569 AC_MSG_CHECKING([whether to enable client-based geolocation support])
570 AC_ARG_ENABLE(client_based_geolocation,
571               AC_HELP_STRING([--enable-client-based-geolocation],
572                              [enable support for client-based geolocation [default=no]]),
573               [],[enable_client_based_geolocation="no"])
574 AC_MSG_RESULT([$enable_client_based_geolocation])
575
576 # check whether to enable MathML support
577 AC_MSG_CHECKING([whether to enable MathML support])
578 AC_ARG_ENABLE(mathml,
579               AC_HELP_STRING([--enable-mathml],
580                              [enable support for MathML [default=no]]),
581               [],[enable_mathml="no"])
582 AC_MSG_RESULT([$enable_mathml])
583
584 # check whether to enable SVG support
585 AC_MSG_CHECKING([whether to enable SVG support])
586 AC_ARG_ENABLE(svg,
587               AC_HELP_STRING([--enable-svg],
588                              [enable support for SVG [default=yes]]),
589               [],[enable_svg="yes"])
590 AC_MSG_RESULT([$enable_svg])
591
592 # check whether to enable WML support
593 AC_MSG_CHECKING([whether to enable WML support])
594 AC_ARG_ENABLE(wml,
595               AC_HELP_STRING([--enable-wml],
596                              [enable support for WML [default=no]]),
597               [],[enable_wml="no"])
598 AC_MSG_RESULT([$enable_wml])
599
600 # check whether to enable WCSS support
601 AC_MSG_CHECKING([whether to enable WCSS support])
602 AC_ARG_ENABLE(wcss,
603               AC_HELP_STRING([--enable-wcss],
604                              [enable support for WCSS [default=no]]),
605               [],[enable_wcss="no"])
606 AC_MSG_RESULT([$enable_wcss])
607
608 # check whether to enable SharedWorkers support
609 AC_MSG_CHECKING([whether to enable SharedWorkers support])
610 AC_ARG_ENABLE(shared_workers,
611               AC_HELP_STRING([--enable-shared-workers],
612                              [enable support for SharedWorkers [default=yes]]),
613               [],[enable_shared_workers="yes"])
614 AC_MSG_RESULT([$enable_shared_workers])
615
616 # check whether to enable Web Workers support
617 AC_MSG_CHECKING([whether to enable Web Workers support])
618 AC_ARG_ENABLE(workers,
619               AC_HELP_STRING([--enable-workers],
620                              [enable support for Web Workers [default=yes]]),
621               [],[enable_workers="yes"])
622 AC_MSG_RESULT([$enable_workers])
623
624 # check whether to enable directory upload support
625 AC_MSG_CHECKING([whether to enable directory upload support])
626 AC_ARG_ENABLE(directory_upload,
627               AC_HELP_STRING([--enable-directory-upload],
628                              [enable support for directory upload [default=no]]),
629               [], [enable_directory_upload="no"])
630 AC_MSG_RESULT([$enable_directory_upload])
631
632 # check whether to enable HTML5 FileSystem API support
633 AC_MSG_CHECKING([whether to enable HTML5 FileSystem API support])
634 AC_ARG_ENABLE(file_system,
635               AC_HELP_STRING([--enable-file-system],
636                              [enable support for HTML5 FileSystem API [default=no]]),
637               [], [enable_file_system="no"])
638 AC_MSG_RESULT([$enable_file_system])
639
640 # turn off svg features if --disable-svg is requested
641 if test "$enable_svg" = "no"; then
642    enable_svg_animation=no
643    enable_svg_fonts=no
644    enable_svg_foreign_object=no
645    enable_svg_as_image=no
646    enable_svg_use=no
647 fi
648
649 # check whether to enable support for SVG animation
650 AC_MSG_CHECKING([whether to enable support for SVG animation])
651 AC_ARG_ENABLE(svg_animation,
652               AC_HELP_STRING([--enable-svg-animation],
653                              [enable support for SVG animation (experimental) [default=yes]]),
654               [],[enable_svg_animation="yes"])
655 AC_MSG_RESULT([$enable_svg_animation])
656
657 # check whether to enable support for filters
658 AC_MSG_CHECKING([whether to enable support for filters])
659 AC_ARG_ENABLE(filters,
660               AC_HELP_STRING([--enable-filters],
661                              [enable support for filters (experimental) [default=yes]]),
662               [],[enable_filters="yes"])
663 AC_MSG_RESULT([$enable_filters])
664
665 # check whether to enable support for SVG fonts
666 AC_MSG_CHECKING([whether to enable support for SVG fonts])
667 AC_ARG_ENABLE(svg_fonts,
668               AC_HELP_STRING([--enable-svg-fonts],
669                              [enable support for SVG fonts (experimental) [default=yes]]),
670               [],[enable_svg_fonts="yes"])
671 AC_MSG_RESULT([$enable_svg_fonts])
672
673 # check whether to enable foreign objects support for SVG
674 AC_MSG_CHECKING([whether to enable support for SVG foreign objects])
675 AC_ARG_ENABLE(svg_foreign_object,
676               AC_HELP_STRING([--enable-svg-foreign-object],
677                              [enable support for SVG foreign objects (experimental) [default=yes]]),
678               [],[enable_svg_foreign_object="yes"])
679 AC_MSG_RESULT([$enable_svg_foreign_object])
680
681 # check whether to enable SVG As Image support
682 AC_MSG_CHECKING([whether to enable SVG as Image support])
683 AC_ARG_ENABLE(svg_as_image,
684               AC_HELP_STRING([--enable-svg-as-image],
685                              [enable SVG as Image support (experimental) [default=yes]]),
686               [],[enable_svg_as_image="yes"])
687 AC_MSG_RESULT([$enable_svg_as_image])
688
689 # check whether to enable SVG USE element support
690 AC_MSG_CHECKING([whether to enable support for SVG use element])
691 AC_ARG_ENABLE(svg_use,
692               AC_HELP_STRING([--enable-svg-use],
693                              [enable SVG use element support (experimental) [default=yes]]),
694               [],[enable_svg_use="yes"])
695 AC_MSG_RESULT([$enable_svg_use])
696
697 # check for SVG features, enabling SVG if necessary
698 if test "$enable_svg_animation" = "yes" || \
699    test "$enable_svg_fonts" = "yes" || \
700    test "$enable_svg_foreign_object" = "yes" || \
701    test "$enable_svg_as_image" = "yes" || \
702    test "$enable_svg_use" = "yes"; then
703    svg_flags=yes
704    if test "$enable_svg" = "no"; then
705        AC_MSG_WARN([SVG feature(s) requested but SVG is disabled.. Enabling SVG support])
706        enable_svg=yes
707    fi
708 fi
709
710 # check whether to enable Web Socket support
711 AC_MSG_CHECKING([whether to enable Web Sockets support])
712 AC_ARG_ENABLE(web_sockets,
713               AC_HELP_STRING([--enable-web-sockets],
714                              [enable support for Web Sockets [default=yes]]),
715               [],[enable_web_sockets="yes"])
716 AC_MSG_RESULT([$enable_web_sockets])
717
718 # check whether to enable Web Audio support
719 AC_MSG_CHECKING([whether to enable Web Audio support])
720 AC_ARG_ENABLE(web_audio,
721               AC_HELP_STRING([--enable-web-audio],
722                              [enable support for Web Audio [default=no]]),
723               [],[enable_web_audio="no"])
724 AC_MSG_RESULT([$enable_web_audio])
725
726 # check whether to enable Web Timing support
727 AC_MSG_CHECKING([whether to enable Web Timing support])
728 AC_ARG_ENABLE(web_timing,
729               AC_HELP_STRING([--enable-web-timing],
730                              [enable support for Web Timing [default=no]]),
731               [],[enable_web_timing="no"])
732 AC_MSG_RESULT([$enable_web_timing])
733
734 # check whether to enable Blob support
735 AC_MSG_CHECKING([whether to enable Blob support])
736 AC_ARG_ENABLE(blob,
737               AC_HELP_STRING([--enable-blob],
738                              [enable support for Blob [default=yes]]),
739               [],[enable_blob="yes"])
740 AC_MSG_RESULT([$enable_blob])
741
742 # check whether to enable Fast Mobile Scrolling support
743 AC_MSG_CHECKING([whether to enable Fast Mobile Scrolling])
744 AC_ARG_ENABLE(fast_mobile_scrolling,
745               AC_HELP_STRING([--enable-fast-mobile-scrolling],
746                              [enable support for Fast Mobile Scrolling [default=no]]),
747               [],[enable_fast_mobile_scrolling="no"])
748 AC_MSG_RESULT([$enable_fast_mobile_scrolling])
749
750 # check whether to enable code coverage
751 AC_MSG_CHECKING([whether to enable code coverage support])
752 AC_ARG_ENABLE(coverage,
753               AC_HELP_STRING([--enable-coverage],
754                              [enable code coverage support [default=no]]),
755               [],[enable_coverage="no"])
756 AC_MSG_RESULT([$enable_coverage])
757
758 # check whether to enable FastMalloc
759 AC_MSG_CHECKING([whether to enable optimized memory allocator])
760 AC_ARG_ENABLE(fast_malloc,
761               AC_HELP_STRING([--enable-fast-malloc],
762                              [enable optimized memory allocator default=yes, default=no for debug builds]),
763               [],[if test "$enable_debug" = "yes"; then enable_fast_malloc="no"; else enable_fast_malloc="yes"; fi])
764 AC_MSG_RESULT([$enable_fast_malloc])
765
766 AC_MSG_CHECKING([whether to enable JIT compilation])
767 AC_ARG_ENABLE([jit],
768               AC_HELP_STRING([--enable-jit],
769                              [Enable JIT compilation default=yes]),
770               [],[enable_jit="yes"])
771 if test "$enable_jit" = "yes"; then
772     case "$host_cpu" in
773         arm*)
774             AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
775             AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
776             AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
777         ;;
778         i*86|x86_64)
779             AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
780             AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
781             AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
782             AC_DEFINE([ENABLE_JIT_OPTIMIZE_CALL], [1], [Define to enable optimizing calls])
783             AC_DEFINE([ENABLE_JIT_OPTIMIZE_PROPERTY_ACCESS], [1], [Define to enable optimized property access])
784             AC_DEFINE([ENABLE_JIT_OPTIMIZE_ARITHMETIC], [1], [Define to enable optimized arithmetic])
785             case "$host_cpu" in
786                 i*86)
787                     AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_VA_LIST], [1], [Use stub va_list])
788                 ;;
789                 x86_64)
790                     AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_REGISTER], [1], [Use stub register])
791                     AC_DEFINE([WTF_USE_ALTERNATE_JSIMMEDIATE], [1], [Use alternate JSImmediate])
792                 ;;
793             esac
794         ;;
795         *)
796             enable_jit="no (CPU '$host_cpu' not supported)"
797         ;;
798     esac
799 else
800         AC_DEFINE([ENABLE_JIT], [0], [Define to enable JIT])
801 fi
802 AC_MSG_RESULT([$enable_jit])
803
804 # Opcode stats
805 AC_MSG_CHECKING([whether to enable opcode stats])
806 AC_ARG_ENABLE([opcode-stats],
807   [AS_HELP_STRING([--enable-opcode-stats], [Enable Opcode statistics (default: disabled)])],
808   [], [enable_opcode_stats=no])
809 AC_MSG_RESULT([$enable_opcode_stats])
810
811 if test "$enable_opcode_stats" = "yes"; then
812   if test "$enable_jit" = "yes"; then
813     AC_MSG_ERROR([JIT must be disabled for Opcode stats to work.])
814   fi
815   AC_DEFINE([ENABLE_OPCODE_STATS], [1], [Define to enable Opcode statistics])
816 fi
817
818 # Link prefetch
819 AC_MSG_CHECKING([whether to enable link prefetch support])
820 AC_ARG_ENABLE([link-prefetch],
821   [AS_HELP_STRING([--enable-link-prefetch], [Enable Link prefetch support (default: disabled)])],
822   [],[enable_link_prefetch=no])
823 AC_MSG_RESULT([$enable_link_prefetch])
824
825 if test "$enable_link_prefetch" = "yes"; then 
826   AC_DEFINE([ENABLE_LINK_PREFETCH], [1], [Define to enable link prefetch support])
827 fi
828
829 # GObject Introspection
830 AC_MSG_CHECKING([whether to enable GObject introspection support])
831 AC_ARG_ENABLE([introspection],
832   [AS_HELP_STRING([--enable-introspection],[Enable GObject introspection (default: disabled)])],
833   [],[enable_introspection=no])
834 AC_MSG_RESULT([$enable_introspection])
835
836 G_IR_SCANNER=
837 G_IR_COMPILER=
838 G_IR_GENERATE=
839 GIRDIR=
840 GIRTYPELIBDIR=
841
842 if test "$enable_introspection" = "yes"; then
843   GOBJECT_INTROSPECTION_REQUIRED=0.9.5
844   PKG_CHECK_MODULES([INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
845   
846   G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
847   G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
848   G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
849   AC_DEFINE([ENABLE_INTROSPECTION],[1],[Define to enable GObject introspection support])
850 fi
851
852 AC_SUBST([G_IR_SCANNER])
853 AC_SUBST([G_IR_COMPILER])
854 AC_SUBST([G_IR_GENERATE])
855
856 # determine the font backend
857 AC_MSG_CHECKING([the font backend to use])
858 AC_ARG_WITH(font_backend,
859             AC_HELP_STRING([--with-font-backend=@<:@freetype/pango@:>@],
860                            [Select font backend [default=freetype]]),
861             [],[with_font_backend="freetype"])
862
863 case "$with_font_backend" in
864      freetype|pango) ;;
865      *) AC_MSG_ERROR([Invalid font backend: must be freetype or pango.]) ;;
866 esac
867 AC_MSG_RESULT([$with_font_backend])
868
869 # Add '-g' flag to gcc if it's debug build
870 if test "$enable_debug" = "yes"; then
871    CXXFLAGS="$CXXFLAGS -g"
872    CFLAGS="$CFLAGS -g"
873 else
874    AC_DEFINE([NDEBUG], [1], [Define to disable debugging features])
875 fi
876
877 # Add the appropriate 'O' level for optimized builds
878 if test "$enable_optimizations" = "yes"; then
879    CXXFLAGS="$CXXFLAGS -O2"
880    CFLAGS="$CFLAGS -O2"
881 else
882    CXXFLAGS="$CXXFLAGS -O0"
883    CFLAGS="$CFLAGS -O0"
884 fi
885
886 PKG_CHECK_MODULES([LIBSOUP],
887                   [libsoup-2.4 >= $LIBSOUP_REQUIRED_VERSION])
888 AC_SUBST([LIBSOUP_CFLAGS])
889 AC_SUBST([LIBSOUP_LIBS])
890
891 # check if we can use libSoup 2.29.90 features
892 PKG_CHECK_MODULES([LIBSOUP_2_29_90],
893                   [libsoup-2.4 >= 2.29.90],
894                   [have_libsoup_2_29_90=yes],
895                   [have_libsoup_2_29_90=no])
896 if test "$have_libsoup_2_29_90" = "yes"; then
897    AC_DEFINE([HAVE_LIBSOUP_2_29_90], 1, [Whether libSoup 2.29.90 features are available])
898 fi
899
900 # check if FreeType/FontConfig are available
901 if test "$with_font_backend" = "freetype"; then
902    if test "$with_target" = "directfb"; then
903    PKG_CHECK_MODULES([FREETYPE],
904                      [fontconfig >= $FONTCONFIG_REQUIRED_VERSION
905                      freetype2 >= $FREETYPE2_REQUIRED_VERSION])
906    else
907    PKG_CHECK_MODULES([FREETYPE],
908                      [cairo-ft
909                      fontconfig >= $FONTCONFIG_REQUIRED_VERSION
910                      freetype2 >= $FREETYPE2_REQUIRED_VERSION])
911    fi
912    AC_SUBST([FREETYPE_CFLAGS])
913    AC_SUBST([FREETYPE_LIBS])
914 fi
915
916 # check if SQLite3 is available. Error out only if one of the
917 # features hard-depending on it is enabled while SQLite3 is
918 # unavailable.
919 PKG_CHECK_MODULES([SQLITE3],
920                   [sqlite3 >= $SQLITE_REQUIRED_VERSION],
921                   [sqlite3_has_pkg_config=yes],
922                   [sqlite3_has_pkg_config=no])
923 if test "$sqlite3_has_pkg_config" = "no"; then
924    AC_SEARCH_LIBS([sqlite3_open16], [sqlite3],
925                   [sqlite3_found=yes;SQLITE3_LIBS="$LIBS";SQLITE3_CFLAGS="-I $srcdir/WebKitLibraries/WebCoreSQLite3"],
926                   [sqlite3_found=no])
927 fi
928 AC_SUBST([SQLITE3_CFLAGS])
929 AC_SUBST([SQLITE3_LIBS])
930
931 if (test "$sqlite3_found" = "no") && (test "$enable_icon_database" = "yes" || \
932    test "$enable_database" = "yes" || \
933    test "$enable_offline_web_applications" = "yes" || \
934    test "$enable_dom_storage" = "yes"); then
935    AC_MSG_ERROR([SQLite3 is required for the Database related features])
936 fi
937
938 # check if libxslt is available
939 if test "$enable_xslt" = "yes"; then
940    PKG_CHECK_MODULES([LIBXSLT],[libxslt >= $LIBXSLT_REQUIRED_VERSION])
941    AC_SUBST([LIBXSLT_CFLAGS])
942    AC_SUBST([LIBXSLT_LIBS])
943 fi
944
945 # check if geoclue is available
946 if test "$enable_geolocation" = "yes"; then
947     PKG_CHECK_MODULES([GEOCLUE], [geoclue])
948     AC_SUBST([GEOCLUE_CFLAGS])
949     AC_SUBST([GEOCLUE_LIBS])
950 fi
951
952 # check if gstreamer is available
953 if test "$enable_video" = "yes"; then
954    PKG_CHECK_MODULES([GSTREAMER],
955                      [gstreamer-0.10 >= $GSTREAMER_REQUIRED_VERSION
956                      gstreamer-app-0.10
957                      gstreamer-base-0.10
958                      gstreamer-interfaces-0.10
959                      gstreamer-pbutils-0.10
960                      gstreamer-plugins-base-0.10 >= $GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION
961                      gstreamer-video-0.10],
962                      [have_gstreamer=yes])
963
964    AC_SUBST([GSTREAMER_CFLAGS])
965    AC_SUBST([GSTREAMER_LIBS])
966 fi
967
968 # check for code coverage support
969 if test "$enable_coverage" = "yes"; then
970    COVERAGE_CFLAGS="-MD"
971    COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
972    AC_SUBST([COVERAGE_CFLAGS])
973    AC_SUBST([COVERAGE_LDFLAGS])
974 fi
975
976 # check for HTML features
977 if test "$enable_video" = "yes"; then
978     html_flags=yes
979 fi
980
981 # WebKit2
982 AC_MSG_CHECKING([whether to build Webkit2])
983 AC_ARG_ENABLE(webkit2,
984             AC_HELP_STRING([--enable-webkit2],
985                 [build webkit2 [default=no]]),
986                 [], [enable_webkit2="no"])
987 AC_MSG_RESULT([$enable_webkit2])
988 if test "$enable_webkit2" = "yes"; then
989     # Turn on this macro by default. It is used in inttypes.h for defining macros used by webkit.
990     # In WebKit, this define is ensured by doing it before including config.h in any source file.
991     # In WebKit2, WebKit2Prefix.h is included as first header file, so we need to define this
992     # macro before actually WebKit2Prefix.h is included in any file.
993     AC_DEFINE([__STDC_FORMAT_MACROS],[1],[Turn on the __STDC_FORMAT_MACROS used in inttypes.h])
994     WEBKITGTK_PC_NAME=${WEBKITGTK_PC_NAME}2
995     AC_SUBST([WEBKITGTK_PC_NAME])
996 fi
997
998 GTK_DOC_CHECK([1.10])
999
1000 # OS conditionals
1001 AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
1002 AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
1003 AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
1004 AM_CONDITIONAL([OS_GNU],[test "$os_gnu" = "yes"])
1005 AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
1006
1007 # target conditionals
1008 AM_CONDITIONAL([TARGET_X11], [test "$with_target" = "x11"])
1009 AM_CONDITIONAL([TARGET_WIN32], [test "$with_target" = "win32"])
1010 AM_CONDITIONAL([TARGET_QUARTZ], [test "$with_target" = "quartz"])
1011 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_target" = "directfb"])
1012
1013 # Unicode backend conditionals
1014 AM_CONDITIONAL([USE_ICU_UNICODE], [test "$with_unicode_backend" = "icu"])
1015 AM_CONDITIONAL([USE_GLIB_UNICODE], [test "$with_unicode_backend" = "glib"])
1016
1017 # Font backend conditionals
1018 AM_CONDITIONAL([USE_FREETYPE], [test "$with_font_backend" = "freetype"])
1019 AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"])
1020
1021 # GLib/GIO feature conditionals
1022 AM_CONDITIONAL([USE_GSETTINGS], [test "$have_gsettings" = "yes"])
1023
1024 # GStreamer feature conditional
1025 AM_CONDITIONAL([USE_GSTREAMER], [test "$have_gstreamer" = "yes"])
1026
1027 # WebKit feature conditionals
1028 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"])
1029 AM_CONDITIONAL([ENABLE_3D_TRANSFORMS],[test "$enable_3d_transforms" = "yes"])
1030 AM_CONDITIONAL([ENABLE_WEBGL],[test "$enable_webgl" = "yes"])
1031 AM_CONDITIONAL([ENABLE_BLOB],[test "$enable_blob" = "yes"])
1032 AM_CONDITIONAL([ENABLE_METER_TAG],[test "$enable_meter_tag" = "yes"])
1033 AM_CONDITIONAL([ENABLE_PROGRESS_TAG],[test "$enable_progress_tag" = "yes"])
1034 AM_CONDITIONAL([ENABLE_CHANNEL_MESSAGING],[test "$enable_channel_messaging" = "yes"])
1035 AM_CONDITIONAL([ENABLE_JAVASCRIPT_DEBUGGER],[test "$enable_javascript_debugger" = "yes"])
1036 AM_CONDITIONAL([ENABLE_OFFLINE_WEB_APPLICATIONS],[test "$enable_offline_web_applications" = "yes"])
1037 AM_CONDITIONAL([ENABLE_DIRECTORY_UPLOAD],[test "$enable_directory_upload" = "yes"])
1038 AM_CONDITIONAL([ENABLE_DATAGRID],[test "$enable_datagrid" = "yes"])
1039 AM_CONDITIONAL([ENABLE_DATA_TRANSFER_ITEMS],[test "$enable_data_transfer_items" = "yes"])
1040 AM_CONDITIONAL([ENABLE_DOM_STORAGE],[test "$enable_dom_storage" = "yes"])
1041 AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"])
1042 AM_CONDITIONAL([ENABLE_DATALIST],[test "$enable_datalist" = "yes"])
1043 AM_CONDITIONAL([ENABLE_EVENTSOURCE],[test "$enable_eventsource" = "yes"])
1044 AM_CONDITIONAL([ENABLE_FAST_MOBILE_SCROLLING],[test "$enable_fast_mobile_scrolling" = "yes"])
1045 AM_CONDITIONAL([ENABLE_FILE_SYSTEM],[test "$enable_file_system" = "yes"])
1046 AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
1047 AM_CONDITIONAL([ENABLE_IMAGE_RESIZER],[test "$enable_image_resizer" = "yes"])
1048 AM_CONDITIONAL([ENABLE_INDEXED_DATABASE],[test "$enable_indexed_database" = "yes"])
1049 AM_CONDITIONAL([ENABLE_INPUT_SPEECH],[test "$enable_input_speech" = "yes"])
1050 AM_CONDITIONAL([ENABLE_XHTMLMP],[test "$enable_xhtmlmp" = "yes"])
1051 AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"])
1052 AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
1053 AM_CONDITIONAL([ENABLE_FILTERS],[test "$enable_filters" = "yes"])
1054 AM_CONDITIONAL([ENABLE_GEOLOCATION], [test "$enable_geolocation" = "yes"])
1055 AM_CONDITIONAL([ENABLE_CLIENT_BASED_GEOLOCATION], [test "$enable_client_based_geolocation" = "yes"])
1056 AM_CONDITIONAL([ENABLE_MATHML], [test "$enable_mathml" = "yes"])
1057 AM_CONDITIONAL([ENABLE_VIDEO],[test "$enable_video" = "yes"])
1058 AM_CONDITIONAL([ENABLE_FULLSCREEN_API],[test "$enable_fullscreen_api" = "yes"])
1059 AM_CONDITIONAL([ENABLE_NOTIFICATIONS],[test "$enable_notifications" = "yes"])
1060 AM_CONDITIONAL([ENABLE_ORIENTATION_EVENTS],[test "$enable_orientation_events" = "yes"])
1061 AM_CONDITIONAL([ENABLE_SVG],[test "$enable_svg" = "yes"])
1062 AM_CONDITIONAL([ENABLE_SVG_ANIMATION],[test "$enable_svg_animation" = "yes"])
1063 AM_CONDITIONAL([ENABLE_SVG_FONTS],[test "$enable_svg_fonts" = "yes"])
1064 AM_CONDITIONAL([ENABLE_SVG_FOREIGN_OBJECT],[test "$enable_svg_foreign_object" = "yes"])
1065 AM_CONDITIONAL([ENABLE_SVG_AS_IMAGE],[test "$enable_svg_as_image" = "yes"])
1066 AM_CONDITIONAL([ENABLE_SVG_USE],[test "$enable_svg_use" = "yes"])
1067 AM_CONDITIONAL([ENABLE_COVERAGE],[test "$enable_coverage" = "yes"])
1068 AM_CONDITIONAL([ENABLE_FAST_MALLOC],[test "$enable_fast_malloc" = "yes"])
1069 AM_CONDITIONAL([ENABLE_WML],[test "$enable_wml" = "yes"])
1070 AM_CONDITIONAL([ENABLE_WCSS],[test "$enable_wcss" = "yes"])
1071 AM_CONDITIONAL([ENABLE_WORKERS],[test "$enable_workers" = "yes"])
1072 AM_CONDITIONAL([ENABLE_SHARED_WORKERS],[test "$enable_shared_workers" = "yes"])
1073 AM_CONDITIONAL([SVG_FLAGS],[test "$svg_flags" = "yes"])
1074 AM_CONDITIONAL([HTML_FLAGS],[test "$html_flags" = "yes"])
1075 AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"])
1076 AM_CONDITIONAL([ENABLE_WEB_AUDIO],[test "$enable_web_audio" = "yes"])
1077 AM_CONDITIONAL([ENABLE_WEB_TIMING],[test "$enable_web_timing" = "yes"])
1078 AM_CONDITIONAL([ENABLE_OPCODE_STATS],[test "$enable_opcode_stats" = "yes"])
1079 AM_CONDITIONAL([ENABLE_WEBKIT2],[test "$enable_webkit2" = "yes"])
1080 AM_CONDITIONAL([ENABLE_SPELLCHECK],[test "$enable_spellcheck" = "yes"])
1081
1082 # Gtk conditionals
1083 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
1084
1085 AC_CONFIG_FILES([
1086 GNUmakefile
1087 ])
1088  
1089 if test "$enable_webkit2" = "no"; then
1090     AC_CONFIG_FILES([
1091     Source/WebKit/gtk/webkit/webkitversion.h
1092     Source/WebKit/gtk/docs/GNUmakefile
1093     Source/WebKit/gtk/docs/version.xml
1094     ]
1095     )
1096
1097     AC_CONFIG_FILES([
1098     Source/WebKit/gtk/${WEBKITGTK_PC_NAME}-${WEBKITGTK_API_VERSION}.pc:Source/WebKit/gtk/webkit.pc.in
1099     Source/WebKit/gtk/JSCore-${WEBKITGTK_API_VERSION}.gir:Source/WebKit/gtk/JSCore.gir.in
1100     Source/WebKit/gtk/org.webkitgtk-${WEBKITGTK_API_VERSION}.gschema.xml:Source/WebKit/gtk/org.webkitgtk.gschema.xml.in
1101     ]
1102     ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
1103     )
1104 else
1105     AC_CONFIG_FILES([
1106     Source/WebKit2/gtk/${WEBKITGTK_PC_NAME}-${WEBKITGTK_API_VERSION}.pc:Source/WebKit2/gtk/webkit2.pc.in
1107     ]
1108     ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
1109     )
1110 fi
1111
1112 AC_OUTPUT
1113
1114 echo "
1115 WebKit was configured with the following options:
1116
1117 Build configuration:
1118  Enable debugging (slow)                                  : $enable_debug
1119  Enable GCC build optimization                            : $enable_optimizations
1120  Code coverage support                                    : $enable_coverage
1121  Unicode backend                                          : $with_unicode_backend
1122  Font backend                                             : $with_font_backend
1123  Optimized memory allocator                               : $enable_fast_malloc
1124 Features:
1125  3D Transforms                                            : $enable_3d_transforms
1126  WebGL                                                    : $enable_webgl
1127  Blob support                                             : $enable_blob
1128  Directory upload                                         : $enable_directory_upload
1129  Fast Mobile Scrolling                                    : $enable_fast_mobile_scrolling
1130  JIT compilation                                          : $enable_jit
1131  Filters support                                          : $enable_filters
1132  Geolocation support                                      : $enable_geolocation
1133  Client-based geolocation support                         : $enable_client_based_geolocation
1134  JavaScript debugger/profiler support                     : $enable_javascript_debugger
1135  MathML support                                           : $enable_mathml
1136  HTML5 offline web applications support                   : $enable_offline_web_applications
1137  HTML5 channel messaging support                          : $enable_channel_messaging
1138  HTML5 meter element support                              : $enable_meter_tag
1139  HTML5 progress element support                           : $enable_progress_tag
1140  HTML5 client-side session and persistent storage support : $enable_dom_storage
1141  HTML5 client-side database storage support               : $enable_database
1142  HTML5 datagrid support                                   : $enable_datagrid
1143  HTML5 data transfer items support                        : $enable_data_transfer_items
1144  HTML5 FileSystem API support                             : $enable_file_system
1145  HTML5 sandboxed iframe support                           : $enable_sandbox
1146  HTML5 server-sent events support                         : $enable_eventsource
1147  HTML5 video element support                              : $enable_video
1148  Fullscreen API support                                   : $enable_fullscreen_api
1149  Icon database support                                    : $enable_icon_database
1150  Image resizer support                                    : $enable_image_resizer
1151  Link prefetch support                                    : $enable_link_prefetch
1152  Opcode stats                                             : $enable_opcode_stats
1153  SharedWorkers support                                    : $enable_shared_workers
1154  Speech input support                                     : $enable_input_speech
1155  SVG support                                              : $enable_svg
1156  SVG animation support                                    : $enable_svg_animation
1157  SVG fonts support                                        : $enable_svg_fonts
1158  SVG foreign object support                               : $enable_svg_foreign_object
1159  SVG as image support                                     : $enable_svg_as_image
1160  SVG use element support                                  : $enable_svg_use
1161  WML support                                              : $enable_wml
1162  WCSS support                                             : $enable_wcss
1163  Web Audio support                                        : $enable_web_audio
1164  Web Sockets support                                      : $enable_web_sockets
1165  Web Timing support                                       : $enable_web_timing
1166  Web Workers support                                      : $enable_workers
1167  XHTML-MP support                                         : $enable_xhtmlmp
1168  XPATH support                                            : $enable_xpath
1169  XSLT support                                             : $enable_xslt
1170  Spellcheck support                                       : $enable_spellcheck
1171
1172 GTK+ configuration:
1173  GTK+ version                                             : $with_gtk
1174  GDK target                                               : $with_target
1175  Hildon UI extensions                                     : $with_hildon
1176  Introspection support                                    : $enable_introspection
1177  WebKit2 support                                          : $enable_webkit2
1178 "
1179 if test "$with_unicode_backend" = "glib"; then
1180    echo "     >> WARNING: the glib-based unicode backend is slow and incomplete <<"
1181    echo
1182    echo
1183 fi