Tizen 2.0 Release
[framework/web/webkit-efl.git] / configure.ac
1 AC_PREREQ(2.60)
2
3 m4_define([webkit_major_version], [1])
4 m4_define([webkit_minor_version], [9])
5 m4_define([webkit_micro_version], [5])
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], [537])
12 m4_define([webkit_user_agent_minor_version], [1])
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=15:0:15
39 AC_SUBST([LIBWEBKITGTK_VERSION])
40
41 LIBJAVASCRIPTCOREGTK_VERSION=13:4:13
42 AC_SUBST([LIBJAVASCRIPTCOREGTK_VERSION])
43
44 LIBWEBKIT2GTK_VERSION=16:0:16
45 AC_SUBST([LIBWEBKIT2GTK_VERSION])
46
47 AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip tar-ustar])
48
49 # Use AM_SILENT_RULES if present
50 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
51
52 # host checking - inspired by the GTK+ configure.in
53 # TODO: move these to webkit.m4?
54 AC_MSG_CHECKING([for native Win32])
55 case "$host" in
56      *-*-mingw*)
57        os_win32=yes
58        ;;
59      *)
60        os_win32=no
61        ;;
62 esac
63 AC_MSG_RESULT([$os_win32])
64
65 case "$host" in
66      *-*-linux*)
67        os_linux=yes
68        ;;
69      *-*-freebsd*)
70        os_freebsd=yes
71        ;;
72      *-*-darwin*)
73        os_darwin=yes
74        ;;
75 esac
76
77 case "$host_os" in
78      gnu* | linux* | k*bsd*-gnu)
79        os_gnu=yes
80        ;;
81      *)
82        os_gnu=no
83        ;;
84 esac
85
86 # If CFLAGS and CXXFLAGS are unset, default to empty.
87 # This is to tell automake not to include '-g' if C{XX,}FLAGS is not set
88 # For more info - http://www.gnu.org/software/automake/manual/autoconf.html#C_002b_002b-Compiler
89 if test -z "$CXXFLAGS"; then
90    CXXFLAGS=""
91 fi
92 if test -z "$CFLAGS"; then
93    CFLAGS=""
94 fi
95
96 PKG_PROG_PKG_CONFIG
97
98 AC_PATH_PROG(PERL, perl)
99 if test -z "$PERL"; then
100    AC_MSG_ERROR([You need 'perl' to compile WebKit])
101 fi
102
103 AC_PATH_PROG(PYTHON, python)
104 if test -z "$PYTHON"; then
105    AC_MSG_ERROR([You need 'python' to compile WebKit])
106 fi
107
108 AC_PATH_PROG(RUBY, ruby)
109 if test -z "$RUBY"; then
110    AC_MSG_ERROR([You need 'ruby' to compile WebKit])
111 fi
112
113 AC_PATH_PROG(BISON, bison)
114 if test -z "$BISON"; then
115    AC_MSG_ERROR([You need the 'bison' parser generator to compile WebKit])
116 fi
117
118 AC_PATH_PROG(MV, mv)
119 if test -z "$MV"; then
120    AC_MSG_ERROR([You need 'mv' to compile WebKit])
121 fi
122
123 AC_PROG_CC
124 AC_PROG_CXX
125 AM_PROG_CC_C_O
126 AC_PROG_INSTALL
127 AC_SYS_LARGEFILE
128
129 # Check whether a C++ was found (AC_PROG_CXX sets $CXX to "g++" even when it
130 # doesn't exist)
131 AC_LANG_PUSH([C++])
132 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])],[],[AC_MSG_ERROR([No C++ compiler found])])
133 AC_LANG_POP([C++])
134
135 # C/C++ Language Features
136 AC_C_CONST
137 AC_C_INLINE
138 AC_C_VOLATILE
139
140 # C/C++ Headers
141 AC_HEADER_STDC
142 AC_HEADER_STDBOOL
143
144 # Linker
145 AC_DISABLE_STATIC
146 AC_LIBTOOL_WIN32_DLL
147 AC_PROG_LIBTOOL
148 # use dolt to speedup the build
149 DOLT
150
151 AC_PATH_PROG(FLEX, flex)
152 if test -z "$FLEX"; then
153    AC_MSG_ERROR([You need the 'flex' lexer generator to compile WebKit])
154 else
155    FLEX_VERSION=`$FLEX --version | sed 's,.*\ \([0-9]*\.[0-9]*\.[0-9]*\)$,\1,'`
156    AX_COMPARE_VERSION([2.5.33],[gt],[$FLEX_VERSION],
157       AC_MSG_WARN([You need at least version 2.5.33 of the 'flex' lexer generator to compile WebKit correctly]))
158 fi
159
160 AC_PATH_PROG(GPERF, gperf)
161 if test -z "$GPERF"; then
162    AC_MSG_ERROR([You need the 'gperf' hash function generator to compile WebKit])
163 fi
164
165 # check for -fvisibility=hidden compiler support (GCC >= 4)
166 saved_CFLAGS="$CFLAGS"
167 CFLAGS="$CFLAGS -fvisibility=hidden -fvisibility-inlines-hidden"
168 AC_MSG_CHECKING([if ${CXX} supports -fvisibility=hidden -fvisibility-inlines-hidden])
169 AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])],
170       [ AC_MSG_RESULT([yes])
171         SYMBOL_VISIBILITY="-fvisibility=hidden" SYMBOL_VISIBILITY_INLINES="-fvisibility-inlines-hidden" ],
172         AC_MSG_RESULT([no]))
173 CFLAGS="$saved_CFLAGS"
174 AC_SUBST(SYMBOL_VISIBILITY)
175 AC_SUBST(SYMBOL_VISIBILITY_INLINES)
176
177 # Disable C++0x compat warnings for GCC >= 4.6.0 until we build
178 # cleanly with that.
179 AC_LANG_PUSH(C++)
180 TMPCXXFLAGS=$CXXFLAGS
181 CXXFLAGS="-Wall -Werror"
182 AC_MSG_CHECKING([if we have to disable C++0x compat warnings for GCC >= 4.6.0])
183 AC_TRY_COMPILE([
184 namespace std {
185     class nullptr_t { };
186 }
187 extern std::nullptr_t nullptr;
188 ], [return 0;],
189 disable_cxx0x_compat=no,
190 disable_cxx0x_compat=yes)
191 AC_MSG_RESULT($disable_cxx0x_compat)
192 if test "$disable_cxx0x_compat" = yes; then
193   CXXFLAGS="$TMPCXXFLAGS -Wno-c++0x-compat"
194 else
195   CXXFLAGS="$TMPCXXFLAGS"
196 fi
197 AC_LANG_POP(C++)
198
199 # pthread (not needed on Windows)
200 if test "$os_win32" = "no"; then
201 AC_CHECK_HEADERS([pthread.h],
202                  AC_DEFINE([HAVE_PTHREAD_H],[1],[Define if pthread exists]),
203                  AC_MSG_ERROR([pthread support is required to build WebKit]))
204 AC_CHECK_LIB(pthread, pthread_rwlock_init,
205                  AC_DEFINE([HAVE_PTHREAD_RWLOCK],[1],[Define if pthread rwlock is present]),
206                  AC_MSG_WARN([pthread rwlock support is not available]))
207 fi
208
209 # check for libjpeg the way Gtk does it.
210 AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,
211                    jpeg_ok=yes, jpeg_ok=no
212                    AC_MSG_ERROR([JPEG library (libjpeg) not found]))
213 if test "$jpeg_ok" = yes; then
214    AC_MSG_CHECKING([for jpeglib])
215    AC_TRY_CPP(
216 [#include <stdio.h>
217 #undef PACKAGE
218 #undef VERSION
219 #undef HAVE_STDLIB_H
220 #include <jpeglib.h>],
221          jpeg_ok=yes,
222          jpeg_ok=no)
223    AC_MSG_RESULT($jpeg_ok)
224    if test "$jpeg_ok" = yes; then
225       JPEG_LIBS="-ljpeg"
226       # should we check for progressive JPEG like GTK+ as well?
227    else
228       AC_MSG_ERROR([JPEG library (libjpeg) not found])
229    fi
230 fi
231 AC_SUBST([JPEG_LIBS])
232
233 # Check for libpng the way Gtk+ does it
234 for l in libpng libpng14 libpng12; do
235   AC_MSG_CHECKING(for $l)
236   if $PKG_CONFIG --exists $l ; then
237     AC_MSG_RESULT(yes)
238     PNG_LIBS=`$PKG_CONFIG --libs $l`
239     png_ok=yes
240     break
241   else
242     AC_MSG_RESULT(no)
243     png_ok=no
244   fi
245 done
246 if test "$png_ok" != yes; then
247   AC_CHECK_LIB(png, png_read_info,
248     [AC_CHECK_HEADER(png.h,
249       png_ok=yes,
250       png_ok=no)],
251     AC_MSG_ERROR([PNG library (libpng) not found]), -lz -lm)
252   if test "$png_ok" = yes; then
253     AC_MSG_CHECKING([for png_structp in png.h])
254     AC_TRY_COMPILE([#include <png.h>],
255       [png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct;],
256       png_ok=yes,
257       png_ok=no)
258     AC_MSG_RESULT($png_ok)
259     if test "$png_ok" = yes; then
260       PNG_LIBS='-lpng -lz'
261     else
262       AC_MSG_ERROR([PNG library (libpng) not found])
263     fi
264   else
265     AC_MSG_ERROR([PNG library (libpng) not found])
266   fi
267 fi
268 AC_SUBST([PNG_LIBS])
269
270
271 if test "$os_win32" = "yes"; then
272   WINMM_LIBS=-lwinmm
273   SHLWAPI_LIBS=-lshlwapi
274   OLE32_LIBS=-lole32
275 fi
276 AC_SUBST([WINMM_LIBS])
277 AC_SUBST([SHLWAPI_LIBS])
278 AC_SUBST([OLE32_LIBS])
279
280
281 # determine the GTK+ version to use
282 AC_MSG_CHECKING([the GTK+ version to use])
283 AC_ARG_WITH([gtk],
284         [AS_HELP_STRING([--with-gtk=2.0|3.0], [the GTK+ version to use (default: 3.0)])],
285         [case "$with_gtk" in
286         2.0|3.0) ;;
287         *) AC_MSG_ERROR([invalid GTK+ version specified]) ;;
288         esac],
289         [with_gtk=3.0])
290 AC_MSG_RESULT([$with_gtk])
291
292 GTK2_REQUIRED_VERSION=2.10
293 GAIL2_REQUIRED_VERSION=1.8
294 GTK3_REQUIRED_VERSION=3.4.0
295 GAIL3_REQUIRED_VERSION=3.0
296
297 case "$with_gtk" in
298      2.0) GTK_REQUIRED_VERSION=$GTK2_REQUIRED_VERSION
299           GTK_API_VERSION=2.0
300           WEBKITGTK_API_MAJOR_VERSION=1
301           WEBKITGTK_API_MINOR_VERSION=0
302           WEBKITGTK_API_VERSION=1.0
303           WEBKITGTK_PC_NAME=webkit
304           GAIL_PC_NAME=gail
305           GAIL_REQUIRED_VERSION=$GAIL2_REQUIRED_VERSION
306           ;;
307      3.0) GTK_REQUIRED_VERSION=$GTK3_REQUIRED_VERSION
308           GTK_API_VERSION=3.0
309           WEBKITGTK_API_MAJOR_VERSION=3
310           WEBKITGTK_API_MINOR_VERSION=0
311           WEBKITGTK_API_VERSION=3.0
312           WEBKITGTK_PC_NAME=webkitgtk
313           GAIL_PC_NAME=gail-3.0
314           GAIL_REQUIRED_VERSION=$GAIL3_REQUIRED_VERSION
315           ;;
316 esac
317
318 AC_SUBST([WEBKITGTK_API_MAJOR_VERSION])
319 AC_SUBST([WEBKITGTK_API_MINOR_VERSION])
320 AC_SUBST([WEBKITGTK_API_VERSION])
321 AC_SUBST([WEBKITGTK_PC_NAME])
322 AC_SUBST([GTK_API_VERSION])
323 AM_CONDITIONAL([GTK_API_VERSION_2],[test "$GTK_API_VERSION" = "2.0"])
324
325 # determine the GDK/GTK+ target
326 AC_MSG_CHECKING([the target windowing system])
327 AC_ARG_WITH(target,
328             AC_HELP_STRING([--with-target=@<:@x11/win32/quartz/directfb@:>@],
329                            [Select webkit target [default=x11]]),
330             [],[with_target="x11"])
331
332 case "$with_target" in
333      x11|win32|quartz|directfb) ;;
334      *) AC_MSG_ERROR([Invalid target: must be x11, quartz, win32, or directfb.]) ;;
335 esac
336
337 AC_MSG_RESULT([$with_target])
338
339 AC_MSG_CHECKING([the GStreamer version to use])
340 AC_ARG_WITH([gstreamer],
341         [AS_HELP_STRING([--with-gstreamer=0.10|1.0], [the GStreamer version to use (default: 0.10)])],
342         [case "$with_gstreamer" in
343         0.10|1.0) ;;
344         *) AC_MSG_ERROR([invalid GStreamer version specified]) ;;
345         esac],
346         [with_gstreamer=0.10])
347 AC_MSG_RESULT([$with_gstreamer])
348
349 GSTREAMER_0_10_REQUIRED_VERSION=0.10
350 GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION=0.10.30
351 GSTREAMER_1_0_REQUIRED_VERSION=0.11.90
352 GSTREAMER_1_0_PLUGINS_BASE_REQUIRED_VERSION=0.11.90
353
354 case "$with_gstreamer" in
355      0.10) GSTREAMER_REQUIRED_VERSION=$GSTREAMER_0_10_REQUIRED_VERSION
356            GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=$GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION
357            GST_API_VERSION=0.10
358            ;;
359      1.0) GSTREAMER_REQUIRED_VERSION=$GSTREAMER_1_0_REQUIRED_VERSION
360            GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION=$GSTREAMER_1_0_PLUGINS_BASE_REQUIRED_VERSION
361            GST_API_VERSION=1.0
362            ;;
363 esac
364
365 AC_SUBST([GST_API_VERSION])
366 if test "$GST_API_VERSION" = "1.0"; then
367 AC_DEFINE([GST_USE_UNSTABLE_API], [1], [Using unstable GStreamer API])
368 AC_DEFINE([GST_API_VERSION_1],[1], [Using GStreamer 1.0])
369 fi
370
371 # minimum base dependencies
372 CAIRO_REQUIRED_VERSION=1.10
373 FONTCONFIG_REQUIRED_VERSION=2.4
374 FREETYPE2_REQUIRED_VERSION=9.0
375 GLIB_REQUIRED_VERSION=2.32.0
376 LIBSOUP_REQUIRED_VERSION=2.39.2
377 LIBXML_REQUIRED_VERSION=2.6
378 PANGO_REQUIRED_VERSION=1.21.0
379
380 # optional modules
381 LIBXSLT_REQUIRED_VERSION=1.1.7
382 SQLITE_REQUIRED_VERSION=3.0
383 ENCHANT_REQUIRED_VERSION=0.22
384 CLUTTER_REQUIRED_VERSION=1.8.2
385 CLUTTER_GTK_REQUIRED_VERSION=1.0.2
386 ATSPI2_REQUIRED_VERSION=2.2.1
387
388 # Check for glib and required utilities
389 AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION, :, :, gmodule gobject gthread gio)
390 if test -z "$GLIB_GENMARSHAL" || test -z "$GLIB_MKENUMS"; then
391    AC_MSG_ERROR([You need the GLib dev tools in your path])
392 fi
393 GLIB_GSETTINGS
394
395 # Check and identify which unicode backend to use
396 AC_MSG_CHECKING([which Unicode backend to use])
397 AC_ARG_WITH(unicode_backend,
398             AC_HELP_STRING([--with-unicode-backend=@<:@icu/glib@:>@],
399                            [Select Unicode backend (WARNING: the glib-based backend is slow, and incomplete) [default=icu]]),
400             [],[with_unicode_backend="icu"])
401
402 case "$with_unicode_backend" in
403      icu|glib) ;;
404      *) AC_MSG_ERROR([Invalid Unicode backend: must be icu or glib.]) ;;
405 esac
406
407 AC_MSG_RESULT([$with_unicode_backend])
408
409 if test "$with_unicode_backend" = "icu"; then
410     # TODO: use pkg-config (after CFLAGS in their .pc files are cleaned up)
411     case "$host" in
412         *-*-darwin*)
413             UNICODE_CFLAGS="-I$srcdir/Source/JavaScriptCore/icu -I$srcdir/Source/WebCore/icu"
414             UNICODE_LIBS="-licucore"
415             ;;
416         *-*-mingw*)
417             UNICODE_CFLAGS=""
418             UNICODE_LIBS="-licui18n -licuuc"
419             ;;
420         *)
421             AC_PATH_PROG(icu_config, icu-config, no)
422             if test "$icu_config" = "no"; then
423                 AC_MSG_ERROR([Cannot find icu-config. The ICU library is needed.])
424             fi
425
426             # We don't use --cflags as this gives us a lot of things that we don't
427             # necessarily want, like debugging and optimization flags
428             # See man (1) icu-config for more info.
429             UNICODE_CFLAGS=`$icu_config --cppflags`
430             UNICODE_LIBS=`$icu_config --ldflags-libsonly`
431             ;;
432     esac
433 fi
434
435 if test "$with_unicode_backend" = "glib"; then
436     PKG_CHECK_MODULES([UNICODE], [glib-2.0 pango >= $PANGO_REQUIRED_VERSION])
437 fi
438
439 AC_SUBST([UNICODE_CFLAGS])
440 AC_SUBST([UNICODE_LIBS])
441
442 PKG_CHECK_MODULES([ZLIB], [zlib])
443 AC_SUBST([ZLIB_CFLAGS])
444 AC_SUBST([ZLIB_LIBS])
445
446 GETTEXT_PACKAGE=$PACKAGE-$GTK_API_VERSION
447 AC_SUBST(GETTEXT_PACKAGE)
448 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
449                    [The gettext catalog name])
450
451 PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= $LIBXML_REQUIRED_VERSION)
452 AC_SUBST(LIBXML_CFLAGS)
453 AC_SUBST(LIBXML_LIBS)
454
455 PKG_CHECK_MODULES(PANGO, 
456                   [pango >= $PANGO_REQUIRED_VERSION
457                    pangoft2])
458 AC_SUBST(PANGO_CFLAGS)
459 AC_SUBST(PANGO_LIBS)
460
461 AC_MSG_CHECKING([whether to enable spellcheck support])
462 AC_ARG_ENABLE([spellcheck],
463   [AS_HELP_STRING([--enable-spellcheck],[enable support for spellcheck])],
464   [],[enable_spellcheck="yes"])
465 AC_MSG_RESULT([$enable_spellcheck])
466
467 if test "$enable_spellcheck" = "yes"; then
468 PKG_CHECK_MODULES(ENCHANT, enchant >= $ENCHANT_REQUIRED_VERSION, [], [enable_spellcheck="no"])
469 AC_SUBST(ENCHANT_CFLAGS)
470 AC_SUBST(ENCHANT_LIBS)
471 fi
472
473 PKG_CHECK_MODULES(GAIL, $GAIL_PC_NAME >= $GAIL_REQUIRED_VERSION)
474 AC_SUBST(GAIL_CFLAGS)
475 AC_SUBST(GAIL_LIBS)
476
477 # check for target-specific dependencies
478 if test "$with_target" = "directfb"; then
479    PKG_CHECK_MODULES(CAIRO, cairo-directfb >= $CAIRO_REQUIRED_VERSION)
480    PKG_CHECK_MODULES(GTK, gtk+-directfb-2.0 >= $GTK_REQUIRED_VERSION)
481    AC_DEFINE([WTF_PLATFORM_DIRECTFB],[1],[Define if target is DirectFB])
482 else
483    PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)
484    PKG_CHECK_MODULES(GTK, gtk+-$GTK_API_VERSION >= $GTK_REQUIRED_VERSION)
485
486    if test "$with_target" = "x11" && test "$os_win32" = "no"; then
487       # check for XT
488       PKG_CHECK_MODULES([XT],
489                         [xt],
490                         [xt_has_pkg_config=yes],
491                         [xt_has_pkg_config=no])
492       # some old versions of Xt do not provide xt.pc, so try to link against Xt
493       # and if it's installed fall back to just adding -lXt
494       if test "$xt_has_pkg_config" = "no"; then
495          # using AC_CHECK_LIB instead of AC_SEARCH_LIB is fine in this case as
496          # we don't care about the XtOpenDisplay symbol but only about the
497          # existence of libXt
498          AC_CHECK_LIB([Xt], [XtOpenDisplay],
499                       [XT_CFLAGS=""; XT_LIBS="-lXt"],
500                       [AC_MSG_ERROR([X Toolkit Intrinsics library (libXt) not found])])
501       fi
502       AC_SUBST([XT_CFLAGS])
503       AC_SUBST([XT_LIBS])
504       AC_DEFINE([WTF_PLATFORM_X11],[1],[Define if target is X11])
505    fi
506 fi
507 AC_SUBST(GTK_CFLAGS)
508 AC_SUBST(GTK_LIBS)
509 AC_SUBST(CAIRO_CFLAGS)
510 AC_SUBST(CAIRO_LIBS)
511
512 # check whether to build with debugging enabled
513 AC_MSG_CHECKING([whether to do a debug build])
514 AC_ARG_ENABLE(debug,
515               AC_HELP_STRING([--enable-debug],
516                              [turn on debugging [default=no]]),
517               [],[enable_debug="no"])
518 AC_MSG_RESULT([$enable_debug])
519
520 # check whether to enable optimized builds
521 AC_MSG_CHECKING([whether to enable optimized builds])
522 AC_ARG_ENABLE(optimizations,
523               AC_HELP_STRING([--enable-optimizations],
524                              [turn on optimize builds (GCC only)
525                              [default=yes]]),
526               [enable_optimizations=$enableval],
527               [if test "$enable_debug" = "yes"; then enable_optimizations="no"; else enable_optimizations="yes"; fi])
528 AC_MSG_RESULT([$enable_optimizations])
529
530 # check whether to enable unstable features
531 AC_MSG_CHECKING([whether to enable unstable features])
532 AC_ARG_ENABLE(unstable_features,
533               AC_HELP_STRING([--enable-unstable-features],
534                              [enable unstable features [default=no]]),
535               [],[enable_unstable_features="no"])
536 AC_MSG_RESULT([$enable_unstable_features])
537
538 found_opengl="no"
539 if test "$with_target" = "x11"; then
540     AC_CHECK_HEADERS([GL/gl.h], [found_opengl="yes"], [])
541     AC_CHECK_HEADERS([GL/glx.h], [], [found_opengl="no"])
542 fi
543 AC_MSG_CHECKING([which GPU acceleration backend to use])
544 AC_ARG_WITH(acceleration_backend,
545             AC_HELP_STRING([--with-acceleration-backend=@<:@opengl/clutter/none@:>@],
546                            [Select accelerated backend (Clutter currently unsupported, OpenGL autodetected) [default=autodetect]]), [],
547                            [
548                                 if test "$found_opengl" = "yes"; then
549                                    with_acceleration_backend="opengl";
550                                 else
551                                    with_acceleration_backend="none";
552                                 fi
553                            ])
554 AC_MSG_RESULT([$with_acceleration_backend])
555
556 # OpenGL is turned on by default (along with WebGL and accelerated compositing), but if
557 # Clutter is chosen as the accelerated drawing backend, we want to disable it. COGL does 
558 # not play well with OpenGL.
559 AC_MSG_CHECKING([whether to enable WebGL support])
560 AC_ARG_ENABLE(webgl,
561               AC_HELP_STRING([--enable-webgl], [enable support for WebGL [default=check]]), [],
562               [
563                 if test "$with_acceleration_backend" = "opengl"; then
564                     enable_webgl="yes";
565                 else
566                     enable_webgl="no";
567                 fi
568              ])
569 AC_MSG_RESULT([$enable_webgl])
570 if test "$enable_webgl" = "yes" && test "$with_acceleration_backend" != "opengl"; then
571     AC_MSG_ERROR([OpenGL must be active (and Clutter disabled) to use WebGL.])
572 fi;
573
574 AC_MSG_CHECKING([whether to enable accelerated compositing support])
575 AC_ARG_ENABLE(accelerated_compositing,
576             AC_HELP_STRING([--enable-accelerated-compositing], [enable support for accelerated compositing [default=check]]),
577             [
578                 if test "$enableval" = "yes" && test "$with_acceleration_backend" = "none"; then
579                     AC_MSG_ERROR([OpenGL or Clutter must be active to use accelerated compositing.])
580                 fi
581                 enable_accelerated_compositing=$enableval;
582             ],
583             [
584                 if test "$with_acceleration_backend" != "none"; then
585                     enable_accelerated_compositing="yes";
586                 else
587                     enable_accelerated_compositing="no";
588                 fi
589             ])
590 AC_MSG_RESULT([$enable_accelerated_compositing])
591
592 # check whether to enable channel messaging support
593 AC_MSG_CHECKING([whether to enable HTML5 Channel Messaging support])
594 AC_ARG_ENABLE(channel_messaging,
595               AC_HELP_STRING([--enable-channel-messaging],
596                              [enable HTML5 channel messaging support [default=yes]]),
597               [],[enable_channel_messaging="yes"])
598 AC_MSG_RESULT([$enable_channel_messaging])
599
600 # check whether to enable legacy notifications
601 AC_MSG_CHECKING([whether to enable legacy notifications])
602 AC_ARG_ENABLE(legacy_notifications,
603               AC_HELP_STRING([--enable-legacy-notifications],
604                              [enable legacy notifications [default=no]]),
605               [],[enable_legacy_notifications="no"])
606 AC_MSG_RESULT([$enable_legacy_notifications])
607
608 # check whether to enable notifications
609 AC_MSG_CHECKING([whether to enable notifications])
610 AC_ARG_ENABLE(notifications,
611               AC_HELP_STRING([--enable-notifications],
612                              [enable notifications [default=no]]),
613               [],[enable_notifications="no"])
614 AC_MSG_RESULT([$enable_notifications])
615
616 # check whether to enable the meter tag
617 AC_MSG_CHECKING([whether to enable HTML5 meter tag])
618 AC_ARG_ENABLE(meter_tag,
619               AC_HELP_STRING([--enable-meter-tag],
620                              [enable HTML5 meter [default=yes]]),
621               [],[enable_meter_tag="yes"])
622 AC_MSG_RESULT([$enable_meter_tag])
623
624 # check whether to enable HTML5 Microdata support
625 AC_MSG_CHECKING([whether to enable HTML5 Microdata support])
626 AC_ARG_ENABLE(microdata,
627               AC_HELP_STRING([--enable-microdata],
628                              [enable HTML5 microdata support [default=no]]),
629               [],[enable_microdata="no"])
630 AC_MSG_RESULT([$enable_microdata])
631
632 # check whether to enable page visibility API.
633 AC_MSG_CHECKING([whether to enable Page Visibility API support])
634 AC_ARG_ENABLE(page_visibility_api,
635               AC_HELP_STRING([--enable-page-visibility-api],
636                              [enable page visibility api[default=no]]),
637               [],[enable_page_visibility_api="no"])
638 AC_MSG_RESULT([$enable_page_visibility_api])
639
640 # check whether to enable the progress tag
641 AC_MSG_CHECKING([whether to enable HTML5 progress tag])
642 AC_ARG_ENABLE(progress_tag,
643               AC_HELP_STRING([--enable-progress-tag],
644                              [enable HTML5 progress [default=yes]]),
645               [],[enable_progress_tag="yes"])
646 AC_MSG_RESULT([$enable_progress_tag])
647
648 # check whether to enable JavaScript debugger/profiler support
649 AC_MSG_CHECKING([whether to enable JavaScript debugger/profiler support])
650 AC_ARG_ENABLE(javascript_debugger,
651               AC_HELP_STRING([--enable-javascript-debugger],
652                              [enable JavaScript debugger/profiler support [default=yes]]),
653               [],[enable_javascript_debugger="yes"])
654 AC_MSG_RESULT([$enable_javascript_debugger])
655
656 # check whether to enable Gamepad support
657 AC_MSG_CHECKING([whether to enable Gamepad support])
658 AC_ARG_ENABLE(gamepad,
659               AC_HELP_STRING([--enable-gamepad],
660                              [enable Gamepad support [default=no]]),
661               [],[enable_gamepad=$enable_unstable_features])
662 AC_MSG_RESULT([$enable_gamepad])
663
664 if test "$enable_gamepad" = "yes" && test "$os_linux" = no; then
665    AC_MSG_WARN([Gamepad support is only available on Linux. Disabling Gamepad support.])
666    enable_gamepad=no;
667 fi
668
669 # check whether to build with data transfer items support
670 AC_MSG_CHECKING([whether to enable HTML5 data transfer items support])
671 AC_ARG_ENABLE(data_transfer_items,
672               AC_HELP_STRING([--enable-data-transfer-items],
673                              [enable HTML5 data transfer items support [default=no]]),
674               [],[enable_data_transfer_items="no"])
675 AC_MSG_RESULT([$enable_data_transfer_items])
676
677 # check whether to enable DOM mutation observer support
678 AC_MSG_CHECKING([whether to enable DOM mutation observer support])
679 AC_ARG_ENABLE(mutation_observers,
680               AC_HELP_STRING([--enable-mutation-observers],
681                              [enable DOM mutation observer support [default=no]]),
682               [],[enable_mutation_observers=$enable_unstable_features])
683 AC_MSG_RESULT([$enable_mutation_observers])
684
685 # check whether to enable the indexed database API
686 AC_MSG_CHECKING([whether to enable the indexed database API])
687 AC_ARG_ENABLE(indexed_database,
688               AC_HELP_STRING([--enable-indexed-database],
689                              [enable the indexed database API (incomplete) [default=no]]),
690               [],[enable_indexed_database="no"])
691 AC_MSG_RESULT([$enable_indexed_database])
692
693 # check whether to enable the color input
694 AC_MSG_CHECKING([whether to enable the color input])
695 AC_ARG_ENABLE(input_type_color,
696               AC_HELP_STRING([--enable-input-type-color],
697                              [enable the color input [default=no]]),
698               [],[enable_input_type_color="no"])
699 AC_MSG_RESULT([$enable_input_type_color])
700
701 # check whether to enable the speech input API
702 AC_MSG_CHECKING([whether to enable the speech input API])
703 AC_ARG_ENABLE(input_speech,
704               AC_HELP_STRING([--enable-input-speech],
705                              [enable the speech input API [default=no]]),
706               [],[enable_input_speech="no"])
707 AC_MSG_RESULT([$enable_input_speech])
708
709 # check whether to enable the scripted speech API
710 AC_MSG_CHECKING([whether to enable the scripted speech API])
711 AC_ARG_ENABLE(scripted_speech,
712               AC_HELP_STRING([--enable-scripted-speech],
713                              [enable the scripted speech API [default=no]]),
714               [],[enable_scripted_speech="no"])
715 AC_MSG_RESULT([$enable_scripted_speech])
716
717 # check whether to build with SQL database support
718 AC_MSG_CHECKING([whether to enable SQL client-side database storage support])
719 AC_ARG_ENABLE(sql_database,
720               AC_HELP_STRING([--enable-sql-database],
721                              [enable SQL client-side database storage support [default=yes]]),
722               [],[enable_sql_database="yes"])
723 AC_MSG_RESULT([$enable_sql_database])
724
725 # check whether to build with icon database support
726 AC_MSG_CHECKING([whether to enable icon database support])
727 AC_ARG_ENABLE(icon_database,
728               AC_HELP_STRING([--enable-icon-database],
729                              [enable icon database [default=yes]]),
730               [],[enable_icon_database="yes"])
731 AC_MSG_RESULT([$enable_icon_database])
732
733 # check whether to enable HTML5 datalist support
734 AC_MSG_CHECKING([whether to enable HTML5 datalist support])
735 AC_ARG_ENABLE(datalist,
736               AC_HELP_STRING([--enable-datalist],
737                              [enable HTML5 datalist support [default=yes]]),
738               [],[enable_datalist="yes"])
739 AC_MSG_RESULT([$enable_datalist])
740
741 # check whether to enable HTML5 iframe seamless attribute support
742 AC_MSG_CHECKING([whether to enable HTML5 iframe seamless attribute support])
743 AC_ARG_ENABLE(iframe-seamless,
744               AC_HELP_STRING([--enable-iframe-seamless],
745                              [enable HTML5 iframe seamless attribute support [default=yes]]),
746               [],[enable_iframe_seamless="yes"])
747 AC_MSG_RESULT([$enable_iframe_seamless])
748
749 # check whether to enable HTML5 audio/video support
750 AC_MSG_CHECKING([whether to enable HTML5 video support])
751 AC_ARG_ENABLE(video,
752               AC_HELP_STRING([--enable-video],
753                              [enable HTML5 video support [default=yes]]),
754               [],[enable_video="yes"])
755 AC_MSG_RESULT([$enable_video])
756
757 # turn off video features if --disable-video is requested
758 if test "$enable_video" = "no"; then
759    enable_video_track=no
760 fi
761
762 # check whether to enable HTML5 video track support
763 AC_MSG_CHECKING([whether to enable HTML5 video track support])
764 AC_ARG_ENABLE(video_track,
765               AC_HELP_STRING([--enable-video-track],
766                              [enable HTML5 video track support [default=no]]),
767               [],[enable_video_track=$enable_unstable_features])
768 AC_MSG_RESULT([$enable_video_track])
769
770 # check whether to enable media source support
771 AC_MSG_CHECKING([whether to enable media source support])
772 AC_ARG_ENABLE(media_source,
773               AC_HELP_STRING([--enable-media-source],
774                              [enable support for media source [default=no]]),
775               [], [enable_media_source="no"])
776 AC_MSG_RESULT([$enable_media_source])
777
778 # check whether to enable media statistics support
779 AC_MSG_CHECKING([whether to enable media statistics support])
780 AC_ARG_ENABLE(media_statistics,
781               AC_HELP_STRING([--enable-media-statistics],
782                              [enable support for media statistics [default=no]]),
783               [], [enable_media_statistics="no"])
784 AC_MSG_RESULT([$enable_media_statistics])
785
786 # check whether to enable Javascript Fullscreen API support
787 AC_MSG_CHECKING([whether to enable Fullscreen API support])
788 AC_ARG_ENABLE(fullscreen_api,
789               AC_HELP_STRING([--enable-fullscreen-api],
790                              [enable the Fullscreen API support [default=yes]]),
791               [],[enable_fullscreen_api="yes"])
792 AC_MSG_RESULT([$enable_fullscreen_api])
793
794 # check whether to enable media stream support
795 AC_MSG_CHECKING([whether to enable media stream support])
796 AC_ARG_ENABLE(media_stream,
797               AC_HELP_STRING([--enable-media-stream],
798                              [enable media stream support (incomplete) [default=no]]),
799               [],[enable_media_stream=$enable_unstable_features])
800 AC_MSG_RESULT([$enable_media_stream])
801
802 # check whether to enable XSLT support
803 AC_MSG_CHECKING([whether to enable XSLT support])
804 AC_ARG_ENABLE(xslt,
805               AC_HELP_STRING([--enable-xslt],
806                              [enable support for XSLT [default=yes]]),
807               [],[enable_xslt="yes"])
808 AC_MSG_RESULT([$enable_xslt])
809
810 # check whether to enable geolocation support
811 AC_MSG_CHECKING([whether to enable geolocation support])
812 AC_ARG_ENABLE(geolocation,
813               AC_HELP_STRING([--enable-geolocation],
814                              [enable support for geolocation [default=yes]]),
815               [],[enable_geolocation="yes"])
816 AC_MSG_RESULT([$enable_geolocation])
817
818 # check whether to enable MathML support
819 AC_MSG_CHECKING([whether to enable MathML support])
820 AC_ARG_ENABLE(mathml,
821               AC_HELP_STRING([--enable-mathml],
822                              [enable support for MathML [default=yes]]),
823               [],[enable_mathml="yes"])
824 AC_MSG_RESULT([$enable_mathml])
825
826 # check whether to enable MHTML support
827 AC_MSG_CHECKING([whether to enable MHTML support])
828 AC_ARG_ENABLE(mhtml,
829               AC_HELP_STRING([--enable-mhtml],
830                              [enable support for MHTML [default=yes]]),
831               [],[enable_mhtml="yes"])
832 AC_MSG_RESULT([$enable_mhtml])
833
834 # check whether to enable SVG support
835 AC_MSG_CHECKING([whether to enable SVG support])
836 AC_ARG_ENABLE(svg,
837               AC_HELP_STRING([--enable-svg],
838                              [enable support for SVG [default=yes]]),
839               [],[enable_svg="yes"])
840 AC_MSG_RESULT([$enable_svg])
841
842 # check whether to enable Shadow DOM support
843 AC_MSG_CHECKING([whether to enable Shadow DOM support])
844 AC_ARG_ENABLE(shadow_dom,
845               AC_HELP_STRING([--enable-shadow-dom],
846                              [enable support for Shadow DOM [default=yes]]),
847               [],[enable_shadow_dom="yes"])
848 AC_MSG_RESULT([$enable_shadow_dom])
849
850 # check whether to enable SharedWorkers support
851 AC_MSG_CHECKING([whether to enable SharedWorkers support])
852 AC_ARG_ENABLE(shared_workers,
853               AC_HELP_STRING([--enable-shared-workers],
854                              [enable support for SharedWorkers [default=yes]]),
855               [],[enable_shared_workers="yes"])
856 AC_MSG_RESULT([$enable_shared_workers])
857
858 # check whether to enable Web Workers support
859 AC_MSG_CHECKING([whether to enable Web Workers support])
860 AC_ARG_ENABLE(workers,
861               AC_HELP_STRING([--enable-workers],
862                              [enable support for Web Workers [default=yes]]),
863               [],[enable_workers="yes"])
864 AC_MSG_RESULT([$enable_workers])
865
866 # check whether to enable directory upload support
867 AC_MSG_CHECKING([whether to enable directory upload support])
868 AC_ARG_ENABLE(directory_upload,
869               AC_HELP_STRING([--enable-directory-upload],
870                              [enable support for directory upload [default=no]]),
871               [], [enable_directory_upload="no"])
872 AC_MSG_RESULT([$enable_directory_upload])
873
874 # check whether to enable HTML5 FileSystem API support
875 AC_MSG_CHECKING([whether to enable HTML5 FileSystem API support])
876 AC_ARG_ENABLE(file_system,
877               AC_HELP_STRING([--enable-file-system],
878                              [enable support for HTML5 FileSystem API [default=no]]),
879               [], [enable_file_system="no"])
880 AC_MSG_RESULT([$enable_file_system])
881
882 # check whether to enable HTML5 <style scoped> support
883 AC_MSG_CHECKING([whether to enable HTML5 <style scoped> support])
884 AC_ARG_ENABLE(style_scoped,
885               AC_HELP_STRING([--enable-style-scoped],
886                              [enable support for HTML5 <style scoped> [default=no]]),
887               [], [enable_style_scoped="no"])
888 AC_MSG_RESULT([$enable_style_scoped])
889
890 # check whether to enable Quota API support
891 AC_MSG_CHECKING([whether to enable Quota API support])
892 AC_ARG_ENABLE(quota,
893               AC_HELP_STRING([--enable-quota],
894                              [enable support for Quota API [default=no]]),
895               [], [enable_quota="no"])
896 AC_MSG_RESULT([$enable_quota])
897
898 # turn off svg features if --disable-svg is requested
899 if test "$enable_svg" = "no"; then
900    enable_svg_fonts=no
901 fi
902
903 # check whether to enable support for CSS box-decoration-break
904 AC_MSG_CHECKING([whether to enable support for CSS box-decoration-break])
905 AC_ARG_ENABLE(css_box_decoration_break,
906               AC_HELP_STRING([--enable-css-box-decoration-break],
907                              [enable support for CSS box-decoration-break (experimental) [default=yes]]),
908               [],[enable_css_box_decoration_break="yes"])
909 AC_MSG_RESULT([$enable_css_box_decoration_break])
910
911 # check whether to enable support for filters
912 AC_MSG_CHECKING([whether to enable support for filters])
913 AC_ARG_ENABLE(filters,
914               AC_HELP_STRING([--enable-filters],
915                              [enable support for filters (experimental) [default=yes]]),
916               [],[enable_filters="yes"])
917 AC_MSG_RESULT([$enable_filters])
918
919 # check whether to enable support for SVG fonts
920 AC_MSG_CHECKING([whether to enable support for SVG fonts])
921 AC_ARG_ENABLE(svg_fonts,
922               AC_HELP_STRING([--enable-svg-fonts],
923                              [enable support for SVG fonts (experimental) [default=yes]]),
924               [],[enable_svg_fonts="yes"])
925 AC_MSG_RESULT([$enable_svg_fonts])
926
927 # check for SVG features, enabling SVG if necessary
928 if test "$enable_svg_fonts" = "yes"; then
929    svg_flags=yes
930    if test "$enable_svg" = "no"; then
931        AC_MSG_WARN([SVG feature(s) requested but SVG is disabled.. Enabling SVG support])
932        enable_svg=yes
933    fi
934 fi
935
936 # check whether to enable Web Socket support
937 AC_MSG_CHECKING([whether to enable Web Sockets support])
938 AC_ARG_ENABLE(web_sockets,
939               AC_HELP_STRING([--enable-web-sockets],
940                              [enable support for Web Sockets [default=yes]]),
941               [],[enable_web_sockets="yes"])
942 AC_MSG_RESULT([$enable_web_sockets])
943
944 # check whether to enable Web Audio support
945 AC_MSG_CHECKING([whether to enable Web Audio support])
946 AC_ARG_ENABLE(web_audio,
947               AC_HELP_STRING([--enable-web-audio],
948                              [enable support for Web Audio [default=no]]),
949               [],[enable_web_audio="no"])
950 AC_MSG_RESULT([$enable_web_audio])
951
952 # check whether to enable Web Timing support
953 AC_MSG_CHECKING([whether to enable Web Timing support])
954 AC_ARG_ENABLE(web_timing,
955               AC_HELP_STRING([--enable-web-timing],
956                              [enable support for Web Timing [default=no]]),
957               [],[enable_web_timing=$enable_unstable_features])
958 AC_MSG_RESULT([$enable_web_timing])
959
960 # check whether to enable Blob support
961 AC_MSG_CHECKING([whether to enable Blob support])
962 AC_ARG_ENABLE(blob,
963               AC_HELP_STRING([--enable-blob],
964                              [enable support for Blob [default=yes]]),
965               [],[enable_blob="yes"])
966 AC_MSG_RESULT([$enable_blob])
967
968 # check whether to enable Legacy WebKitBlobBuilder support
969 AC_MSG_CHECKING([whether to enable Legacy WebKitBlobBuilder support])
970 AC_ARG_ENABLE(legacy_webkit_blob_builder,
971               AC_HELP_STRING([--enable-legacy-webkit-blob-builder],
972                              [enable support for Legacy WebKitBlobBuilder [default=yes]]),
973               [],[enable_legacy_webkit_blob_builder="yes"])
974 AC_MSG_RESULT([$legacy_webkit_blob_builder])
975
976 # check whether to enable Fast Mobile Scrolling support
977 AC_MSG_CHECKING([whether to enable Fast Mobile Scrolling])
978 AC_ARG_ENABLE(fast_mobile_scrolling,
979               AC_HELP_STRING([--enable-fast-mobile-scrolling],
980                              [enable support for Fast Mobile Scrolling [default=no]]),
981               [],[enable_fast_mobile_scrolling="no"])
982 AC_MSG_RESULT([$enable_fast_mobile_scrolling])
983
984 # check whether to enable code coverage
985 AC_MSG_CHECKING([whether to enable code coverage support])
986 AC_ARG_ENABLE(coverage,
987               AC_HELP_STRING([--enable-coverage],
988                              [enable code coverage support [default=no]]),
989               [],[enable_coverage="no"])
990 AC_MSG_RESULT([$enable_coverage])
991
992 # check whether to enable CSS flaxbox support
993 AC_MSG_CHECKING([whether to enable CSS3 flexbox support])
994 AC_ARG_ENABLE(css3_flexbox,
995               AC_HELP_STRING([--enable-css3-flexbox],
996                              [enable CSS3 flexbox support [default=no]]),
997               [],[enable_css3_flexbox=$enable_unstable_features])
998 AC_MSG_RESULT([$enable_css3_flexbox])
999
1000 # check whether to enable FastMalloc
1001 AC_MSG_CHECKING([whether to enable optimized memory allocator])
1002 AC_ARG_ENABLE(fast_malloc,
1003               AC_HELP_STRING([--enable-fast-malloc],
1004                              [enable optimized memory allocator default=yes, default=no for debug builds]),
1005               [],[if test "$enable_debug" = "yes"; then enable_fast_malloc="no"; else enable_fast_malloc="yes"; fi])
1006 AC_MSG_RESULT([$enable_fast_malloc])
1007
1008 # check whether to enable debug symbols
1009 AC_MSG_CHECKING([whether to enable debug symbols])
1010 AC_ARG_ENABLE(debug_symbols,
1011               AC_HELP_STRING([--enable-debug-symbols],
1012                              [enable debug symbols default=no, default=yes for debug builds]),
1013               [],[if test "$enable_debug" = "yes"; then enable_debug_symbols="yes"; else enable_debug_symbols="no"; fi])
1014 AC_MSG_RESULT([$enable_debug_symbols])
1015
1016 # check whether to enable debug features
1017 AC_MSG_CHECKING([whether to enable debug features])
1018 AC_ARG_ENABLE(debug_features,
1019               AC_HELP_STRING([--enable-debug-features],
1020                              [enable debug features default=no, default=yes for debug builds]),
1021               [],[if test "$enable_debug" = "yes"; then enable_debug_features="yes"; else enable_debug_features="no"; fi])
1022 AC_MSG_RESULT([$enable_debug_features])
1023
1024 AC_MSG_CHECKING([whether to enable JIT compilation])
1025 AC_ARG_ENABLE(jit,
1026               AS_HELP_STRING([--enable-jit],
1027                              [Enable JIT compilation (default: autodetect)]))
1028 case "$enable_jit" in
1029   yes) JSC_CPPFLAGS="-DENABLE_JIT=1" ;;
1030   no) JSC_CPPFLAGS="-DENABLE_JIT=0" ;;
1031   *) enable_jit="autodetect" ;;
1032 esac
1033 AC_SUBST(JSC_CPPFLAGS)
1034 AC_MSG_RESULT([$enable_jit])
1035
1036 # Opcode stats
1037 AC_MSG_CHECKING([whether to enable opcode stats])
1038 AC_ARG_ENABLE([opcode-stats],
1039   [AS_HELP_STRING([--enable-opcode-stats], [Enable Opcode statistics (default: disabled)])],
1040   [], [enable_opcode_stats=no])
1041 AC_MSG_RESULT([$enable_opcode_stats])
1042
1043 if test "$enable_opcode_stats" = "yes"; then
1044   if test "$enable_jit" = "yes"; then
1045     AC_MSG_ERROR([JIT must be disabled for Opcode stats to work.])
1046   fi
1047   AC_DEFINE([ENABLE_OPCODE_STATS], [1], [Define to enable Opcode statistics])
1048 fi
1049
1050 # Link prefetch
1051 AC_MSG_CHECKING([whether to enable link prefetch support])
1052 AC_ARG_ENABLE([link-prefetch],
1053   [AS_HELP_STRING([--enable-link-prefetch], [Enable Link prefetch support (default: disabled)])],
1054   [],[enable_link_prefetch=$enable_unstable_features])
1055 AC_MSG_RESULT([$enable_link_prefetch])
1056
1057 # GObject Introspection
1058 AC_MSG_CHECKING([whether to enable GObject introspection support])
1059 AC_ARG_ENABLE([introspection],
1060   [AS_HELP_STRING([--enable-introspection],[Enable GObject introspection (default: disabled)])],
1061   [],[enable_introspection=no])
1062 AC_MSG_RESULT([$enable_introspection])
1063
1064 # check whether to enable animation API
1065 AC_MSG_CHECKING([whether to enable Animation API support])
1066 AC_ARG_ENABLE(animation_api,
1067               AC_HELP_STRING([--enable-animation-api],
1068                              [enable support for Animation API (experimental) [default=no]]),
1069               [], [enable_animation_api="no"])
1070 AC_MSG_RESULT([$enable_animation_api])
1071
1072 # check whether to enable requestAnimationFrame support
1073 AC_MSG_CHECKING([whether to enable requestAnimationFrame support])
1074 AC_ARG_ENABLE(request_animation_frame,
1075               AC_HELP_STRING([--enable-request-animation-frame],
1076                              [enable support for requestAnimationFrame (experimental) [default=yes]]),
1077               [],[enable_request_animation_frame="yes"])
1078 AC_MSG_RESULT([$enable_request_animation_frame])
1079
1080 # check whether to enable touch icon loading 
1081 AC_MSG_CHECKING([whether to enable touch icon loading])
1082 AC_ARG_ENABLE(touch_icon_loading,
1083               AC_HELP_STRING([--enable-touch-icon-loading],
1084                              [enable support for loading touch icons [default=no]]),
1085               [], [enable_touch_icon_loading="no"])
1086 AC_MSG_RESULT([$enable_touch_icon_loading])
1087
1088 # check whether to enable Register Protocol Handler support
1089 AC_MSG_CHECKING([whether to enable Register Protocol Handler])
1090 AC_ARG_ENABLE(register_protocol_handler,
1091               AC_HELP_STRING([--enable-register-protocol-handler],
1092                              [enable support for Register Protocol Handler (experimental) [default=no]]),
1093               [],[enable_register_protocol_handler="no"])
1094 AC_MSG_RESULT([$enable_register_protocol_handler])
1095
1096 # check whether to enable DeviceOrientation support
1097 AC_MSG_CHECKING([whether to enable DeviceOrientation])
1098 AC_ARG_ENABLE(device_orientation,
1099               AC_HELP_STRING([--enable-device-orientation],
1100                              [enable support for DeviceOrientation (experimental and incomplete) [default=no]]),
1101               [],[enable_device_orientation="no"])
1102 AC_MSG_RESULT([$enable_device_orientation])
1103
1104 # check whether to enable Text Autosizing support
1105 AC_MSG_CHECKING([whether to enable Text Autosizing])
1106 AC_ARG_ENABLE(text_autosizing,
1107               AC_HELP_STRING([--enable-text-autosizing],
1108                              [enable support for Text Autosizing (incomplete) [default=no]]),
1109               [],[enable_text_autosizing="no"])
1110 AC_MSG_RESULT([$enable_text_autosizing])
1111
1112 # check whether to enable CSS Exclusions support
1113 AC_MSG_CHECKING([whether to enable CSS Exclusions])
1114 AC_ARG_ENABLE(css_exclusions,
1115               AC_HELP_STRING([--enable-css-exclusions],
1116                              [enable support for CSS Exclusions [default=yes]]),
1117               [],[enable_css_exclusions="yes"])
1118 AC_MSG_RESULT([$enable_css_exclusions])
1119
1120 # check whether to enable CSS Regions support
1121 AC_MSG_CHECKING([whether to enable CSS Regions])
1122 AC_ARG_ENABLE(css_regions,
1123               AC_HELP_STRING([--enable-css-regions],
1124                              [enable support for CSS Regions [default=yes]]),
1125               [],[enable_css_regions="yes"])
1126 AC_MSG_RESULT([$enable_css_regions])
1127
1128 # check whether to enable CSS Filters support
1129 AC_MSG_CHECKING([whether to enable CSS Filters])
1130 AC_ARG_ENABLE(css_filters,
1131               AC_HELP_STRING([--enable-css-filters],
1132                              [enable support for CSS Filters [default=no]]),
1133               [],[enable_css_filters="no"])
1134 AC_MSG_RESULT([$enable_css_filters])
1135
1136 G_IR_SCANNER=
1137 G_IR_COMPILER=
1138 G_IR_GENERATE=
1139 GIRDIR=
1140 GIRTYPELIBDIR=
1141
1142 if test "$enable_introspection" = "yes"; then
1143   GOBJECT_INTROSPECTION_REQUIRED=0.9.5
1144   PKG_CHECK_MODULES([INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
1145   
1146   G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
1147   G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
1148   G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
1149   AC_DEFINE([ENABLE_INTROSPECTION],[1],[Define to enable GObject introspection support])
1150 fi
1151
1152 AC_SUBST([G_IR_SCANNER])
1153 AC_SUBST([G_IR_COMPILER])
1154 AC_SUBST([G_IR_GENERATE])
1155
1156 # determine the font backend
1157 AC_MSG_CHECKING([the font backend to use])
1158 AC_ARG_WITH(font_backend,
1159             AC_HELP_STRING([--with-font-backend=@<:@freetype/pango@:>@],
1160                            [Select font backend [default=freetype]]),
1161             [],[with_font_backend="freetype"])
1162
1163 case "$with_font_backend" in
1164      freetype|pango) ;;
1165      *) AC_MSG_ERROR([Invalid font backend: must be freetype or pango.]) ;;
1166 esac
1167 AC_MSG_RESULT([$with_font_backend])
1168
1169 if test "$host_cpu" = "sh4"; then
1170    CXXFLAGS="$CXXFLAGS -mieee -w"
1171    CFLAGS="$CFLAGS -mieee -w"
1172 fi
1173
1174 # Add '-g' flag to gcc to build with debug symbols
1175 if test "$enable_debug_symbols" = "yes"; then
1176    CXXFLAGS="$CXXFLAGS -g"
1177    CFLAGS="$CFLAGS -g"
1178 fi
1179
1180 if test "$enable_debug_features" = "no"; then
1181    AC_DEFINE([NDEBUG], [1], [Define to disable debugging features])
1182 fi
1183
1184 # Add the appropriate 'O' level for optimized builds
1185 if test "$enable_optimizations" = "yes"; then
1186    CXXFLAGS="$CXXFLAGS -O2"
1187    CFLAGS="$CFLAGS -O2"
1188 else
1189    CXXFLAGS="$CXXFLAGS -O0"
1190    CFLAGS="$CFLAGS -O0"
1191 fi
1192
1193 PKG_CHECK_MODULES([LIBSOUP],
1194                   [libsoup-2.4 >= $LIBSOUP_REQUIRED_VERSION])
1195 AC_SUBST([LIBSOUP_CFLAGS])
1196 AC_SUBST([LIBSOUP_LIBS])
1197
1198 # check if FreeType/FontConfig are available
1199 if test "$with_font_backend" = "freetype"; then
1200    if test "$with_target" = "directfb"; then
1201    PKG_CHECK_MODULES([FREETYPE],
1202                      [fontconfig >= $FONTCONFIG_REQUIRED_VERSION
1203                      freetype2 >= $FREETYPE2_REQUIRED_VERSION])
1204    else
1205    PKG_CHECK_MODULES([FREETYPE],
1206                      [cairo-ft
1207                      fontconfig >= $FONTCONFIG_REQUIRED_VERSION
1208                      freetype2 >= $FREETYPE2_REQUIRED_VERSION])
1209    fi
1210    AC_SUBST([FREETYPE_CFLAGS])
1211    AC_SUBST([FREETYPE_LIBS])
1212 fi
1213
1214 # check if SQLite3 is available. Error out only if one of the
1215 # features hard-depending on it is enabled while SQLite3 is
1216 # unavailable.
1217 PKG_CHECK_MODULES([SQLITE3],
1218                   [sqlite3 >= $SQLITE_REQUIRED_VERSION],
1219                   [sqlite3_has_pkg_config=yes],
1220                   [sqlite3_has_pkg_config=no])
1221 if test "$sqlite3_has_pkg_config" = "no"; then
1222    AC_SEARCH_LIBS([sqlite3_open16], [sqlite3],
1223                   [sqlite3_found=yes;SQLITE3_LIBS="$LIBS";SQLITE3_CFLAGS="-I $srcdir/WebKitLibraries/WebCoreSQLite3"],
1224                   [sqlite3_found=no])
1225 fi
1226 AC_SUBST([SQLITE3_CFLAGS])
1227 AC_SUBST([SQLITE3_LIBS])
1228
1229 if (test "$sqlite3_found" = "no"); then
1230    AC_MSG_ERROR([SQLite3 is required for the Database related features])
1231 fi
1232
1233 # check if libxslt is available
1234 if test "$enable_xslt" = "yes"; then
1235    PKG_CHECK_MODULES([LIBXSLT],[libxslt >= $LIBXSLT_REQUIRED_VERSION])
1236    AC_SUBST([LIBXSLT_CFLAGS])
1237    AC_SUBST([LIBXSLT_LIBS])
1238 fi
1239
1240 # check if geoclue is available
1241 if test "$enable_geolocation" = "yes"; then
1242     PKG_CHECK_MODULES([GEOCLUE], [geoclue])
1243     AC_SUBST([GEOCLUE_CFLAGS])
1244     AC_SUBST([GEOCLUE_LIBS])
1245 fi
1246
1247 # check for XRender under Linux/Unix. Some linkers require explicit
1248 # linkage (like GNU Gold), so we cannot rely on GTK+ pulling XRender
1249 if test "$os_win32" = "no"; then
1250    PKG_CHECK_MODULES([XRENDER], [xrender])
1251    AC_SUBST([XRENDER_CFLAGS])
1252    AC_SUBST([XRENDER_LIBS])
1253 fi
1254
1255 # check if gstreamer is available
1256 if test "$enable_video" = "yes" || test "$enable_web_audio" = "yes"; then
1257     gstreamer_modules="gstreamer-$GST_API_VERSION >= $GSTREAMER_REQUIRED_VERSION
1258                        gstreamer-app-$GST_API_VERSION
1259                        gstreamer-audio-$GST_API_VERSION
1260                        gstreamer-fft-$GST_API_VERSION
1261                        gstreamer-base-$GST_API_VERSION
1262                        gstreamer-pbutils-$GST_API_VERSION
1263                        gstreamer-plugins-base-$GST_API_VERSION >= $GSTREAMER_PLUGINS_BASE_REQUIRED_VERSION
1264                        gstreamer-video-$GST_API_VERSION";
1265    if test "$GST_API_VERSION" != "1.0"; then
1266        gstreamer_modules="$gstreamer_modules gstreamer-interfaces-$GST_API_VERSION";
1267    fi
1268    PKG_CHECK_MODULES([GSTREAMER], [$gstreamer_modules], [have_gstreamer=yes])
1269    AC_SUBST([GSTREAMER_CFLAGS])
1270    AC_SUBST([GSTREAMER_LIBS])
1271 fi
1272
1273
1274 if test "$with_acceleration_backend" = "clutter"; then
1275    PKG_CHECK_MODULES(CLUTTER, clutter-1.0 >= $CLUTTER_REQUIRED_VERSION)
1276    PKG_CHECK_MODULES([CLUTTER_GTK],
1277                      [clutter-gtk-1.0 >= $CLUTTER_GTK_REQUIRED_VERSION])
1278
1279    AC_SUBST(CLUTTER_CFLAGS)
1280    AC_SUBST(CLUTTER_LIBS)
1281    AC_SUBST(CLUTTER_GTK_CFLAGS)
1282    AC_SUBST(CLUTTER_GTK_LIBS)
1283 fi
1284
1285 if test "$with_acceleration_backend" = "opengl"; then
1286     OPENGL_LIBS="-lGL -ldl"
1287 fi
1288 AC_SUBST([OPENGL_LIBS])
1289
1290 # check if atspi2 is available (only needed for Webkit2 unit tests)
1291 if test "$enable_webkit2" = "yes"; then
1292    PKG_CHECK_MODULES([ATSPI2],
1293                      [atspi-2 >= $ATSPI2_REQUIRED_VERSION],
1294                      [have_atspi2=yes], [have_atspi2=no])
1295
1296    AC_SUBST([ATSPI2_CFLAGS])
1297    AC_SUBST([ATSPI2_LIBS])
1298 fi
1299
1300 if test "$enable_gamepad" = "yes"; then
1301    PKG_CHECK_MODULES([GAMEPAD], [gio-unix-2.0 gudev-1.0])
1302
1303    AC_SUBST(GAMEPAD_CFLAGS)
1304    AC_SUBST(GAMEPAD_LIBS)
1305 fi
1306
1307 # check for code coverage support
1308 if test "$enable_coverage" = "yes"; then
1309    COVERAGE_CFLAGS="-MD"
1310    COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
1311    AC_SUBST([COVERAGE_CFLAGS])
1312    AC_SUBST([COVERAGE_LDFLAGS])
1313 fi
1314
1315 # check for HTML features
1316 if test "$enable_video" = "yes"; then
1317     html_flags=yes
1318 fi
1319
1320 # WebKit2
1321 # If you change the default here, please also make sure the assumptions made
1322 # in Tools/Scripts/webkitdirs.pm:buildAutotoolsProject still make sense.
1323 AC_MSG_CHECKING([whether to build Webkit2])
1324 AC_ARG_ENABLE(webkit2,
1325     AC_HELP_STRING([--enable-webkit2], [build webkit2 [default=yes]]),
1326     [], [enable_webkit2="yes"])
1327 AC_MSG_RESULT([$enable_webkit2])
1328 if test "$enable_webkit2" = "yes"; then
1329    if test "$GTK_API_VERSION" = "2.0"; then
1330       AC_MSG_ERROR([WebKit2 requires GTK+ 3.x, use --with-gtk=3.0])
1331    fi
1332
1333    # Check Unix printing
1334    PKG_CHECK_MODULES(GTK_UNIX_PRINTING, gtk+-unix-print-3.0,
1335                      [have_gtk_unix_printing=yes],
1336                      [have_gtk_unix_printing=no])
1337    AC_SUBST(GTK_UNIX_PRINTING_CFLAGS)
1338    AC_SUBST(GTK_UNIX_PRINTING_LIBS)
1339    if test "$have_gtk_unix_printing" = "yes"; then
1340        AC_DEFINE([HAVE_GTK_UNIX_PRINTING], [1], [Define if GTK+ UNIX Printing is available])
1341    fi
1342 fi
1343
1344 # Plugin Process
1345 AC_MSG_CHECKING([whether to build plugin process for WebKit2])
1346 AC_ARG_ENABLE(plugin_process,
1347             AC_HELP_STRING([--enable-plugin-process], [build plugin process for WebKit2 [default=yes]]),
1348                            [], [enable_plugin_process="yes"])
1349 AC_MSG_RESULT([$enable_plugin_process])
1350
1351 # Build the plugin process only when building Webkit2.
1352 if test "$enable_webkit2" = "no"; then
1353     enable_plugin_process=no
1354 fi
1355
1356 # Make sure we have GTK+ 2.x to build the plugin process.
1357 if test "$enable_plugin_process" = "yes"; then
1358    PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= $GTK2_REQUIRED_VERSION gail >= $GAIL2_REQUIRED_VERSION)
1359 fi
1360 AC_SUBST(GTK2_CFLAGS)
1361 AC_SUBST(GTK2_LIBS)
1362
1363 GTK_DOC_CHECK([1.10])
1364
1365 # OS conditionals
1366 AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
1367 AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
1368 AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
1369 AM_CONDITIONAL([OS_GNU],[test "$os_gnu" = "yes"])
1370 AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
1371
1372 # target conditionals
1373 AM_CONDITIONAL([TARGET_X11], [test "$with_target" = "x11"])
1374 AM_CONDITIONAL([TARGET_WIN32], [test "$with_target" = "win32"])
1375 AM_CONDITIONAL([TARGET_QUARTZ], [test "$with_target" = "quartz"])
1376 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_target" = "directfb"])
1377
1378 # Unicode backend conditionals
1379 AM_CONDITIONAL([USE_ICU_UNICODE], [test "$with_unicode_backend" = "icu"])
1380 AM_CONDITIONAL([USE_GLIB_UNICODE], [test "$with_unicode_backend" = "glib"])
1381
1382 # Font backend conditionals
1383 AM_CONDITIONAL([USE_FREETYPE], [test "$with_font_backend" = "freetype"])
1384 AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"])
1385
1386 # GStreamer feature conditional
1387 AM_CONDITIONAL([USE_GSTREAMER], [test "$have_gstreamer" = "yes"])
1388 AM_CONDITIONAL([USE_WEBAUDIO_GSTREAMER], [test "$enable_web_audio" = "yes"])
1389
1390 # ATSPI2 conditional
1391 AM_CONDITIONAL([HAVE_ATSPI2], [test "$have_atspi2" = "yes"])
1392
1393 # Accelerated compositing conditional
1394 AM_CONDITIONAL([USE_ACCELERATED_COMPOSITING], [test "$enable_accelerated_compositing" = "yes"])
1395 AM_CONDITIONAL([USE_TEXTURE_MAPPER_CAIRO], [test "$enable_accelerated_compositing" = "yes" && test "$with_acceleration_backend" = "none"])
1396 AM_CONDITIONAL([USE_TEXTURE_MAPPER_GL], [test "$enable_accelerated_compositing" = "yes" && test "$with_acceleration_backend" = "opengl"])
1397 AM_CONDITIONAL([USE_CLUTTER], [test "$with_acceleration_backend" = "clutter"])
1398
1399 # These are the same now, but they will soon be separate.
1400 AM_CONDITIONAL([USE_GLX], [test "$with_acceleration_backend" = "opengl"])
1401 AM_CONDITIONAL([USE_OPENGL], [test "$with_acceleration_backend" = "opengl"])
1402
1403 # IndexedDB implies LevelDB, but other features may one day require LevelDB.
1404 AM_CONDITIONAL([ENABLE_INDEXED_DATABASE],[test "$enable_indexed_database" = "yes"])
1405 AM_CONDITIONAL([USE_LEVELDB],[test "$enable_indexed_database" = "yes"])
1406
1407 # WebKit feature conditionals
1408 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug_features" = "yes"])
1409 AM_CONDITIONAL([ENABLE_UNSTABLE_FEATURES],[test "$enable_unstable_features" = "yes"])
1410 AM_CONDITIONAL([ENABLE_WEBGL],[test "$enable_webgl" = "yes"])
1411 AM_CONDITIONAL([ENABLE_BLOB],[test "$enable_blob" = "yes"])
1412 AM_CONDITIONAL([ENABLE_LEGACY_WEBKIT_BLOB_BUILDER],[test "$enable_legacy_webkit_blob_builder" = "yes"])
1413 AM_CONDITIONAL([ENABLE_METER_ELEMENT],[test "$enable_meter_tag" = "yes"])
1414 AM_CONDITIONAL([ENABLE_MICRODATA],[test "$enable_microdata" = "yes"])
1415 AM_CONDITIONAL([ENABLE_PAGE_VISIBILITY_API],[test "$enable_page_visibility_api" = "yes"])
1416 AM_CONDITIONAL([ENABLE_PROGRESS_ELEMENT],[test "$enable_progress_tag" = "yes"])
1417 AM_CONDITIONAL([ENABLE_CHANNEL_MESSAGING],[test "$enable_channel_messaging" = "yes"])
1418 AM_CONDITIONAL([ENABLE_JAVASCRIPT_DEBUGGER],[test "$enable_javascript_debugger" = "yes"])
1419 AM_CONDITIONAL([ENABLE_GAMEPAD],[test "$enable_gamepad" = "yes"])
1420 AM_CONDITIONAL([ENABLE_DIRECTORY_UPLOAD],[test "$enable_directory_upload" = "yes"])
1421 AM_CONDITIONAL([ENABLE_DATA_TRANSFER_ITEMS],[test "$enable_data_transfer_items" = "yes"])
1422 AM_CONDITIONAL([ENABLE_SQL_DATABASE],[test "$enable_sql_database" = "yes"])
1423 AM_CONDITIONAL([ENABLE_DATALIST_ELEMENT],[test "$enable_datalist" = "yes"])
1424 AM_CONDITIONAL([ENABLE_DETAILS_ELEMENT],[test "$enable_details" = "yes"])
1425 AM_CONDITIONAL([ENABLE_FAST_MOBILE_SCROLLING],[test "$enable_fast_mobile_scrolling" = "yes"])
1426 AM_CONDITIONAL([ENABLE_FILE_SYSTEM],[test "$enable_file_system" = "yes"])
1427 AM_CONDITIONAL([ENABLE_STYLE_SCOPED],[test "$enable_style_scoped" = "yes"])
1428 AM_CONDITIONAL([ENABLE_QUOTA],[test "$enable_quota" = "yes"])
1429 AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
1430 AM_CONDITIONAL([ENABLE_INPUT_TYPE_COLOR],[test "$enable_input_type_color" = "yes"])
1431 AM_CONDITIONAL([ENABLE_INPUT_SPEECH],[test "$enable_input_speech" = "yes"])
1432 AM_CONDITIONAL([ENABLE_SCRIPTED_SPEECH],[test "$enable_scripted_speech" = "yes"])
1433 AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
1434 AM_CONDITIONAL([ENABLE_CSS_BOX_DECORATION_BREAK],[test "$enable_css_box_decoration_break" = "yes"])
1435 AM_CONDITIONAL([ENABLE_FILTERS],[test "$enable_filters" = "yes"])
1436 AM_CONDITIONAL([ENABLE_GEOLOCATION], [test "$enable_geolocation" = "yes"])
1437 AM_CONDITIONAL([ENABLE_MATHML], [test "$enable_mathml" = "yes"])
1438 AM_CONDITIONAL([ENABLE_MHTML], [test "$enable_mhtml" = "yes"])
1439 AM_CONDITIONAL([ENABLE_VIDEO],[test "$enable_video" = "yes"])
1440 AM_CONDITIONAL([ENABLE_MEDIA_SOURCE],[test "$enable_media_source" = "yes"])
1441 AM_CONDITIONAL([ENABLE_MEDIA_STATISTICS],[test "$enable_media_statistics" = "yes"])
1442 AM_CONDITIONAL([ENABLE_VIDEO_TRACK],[test "$enable_video_track" = "yes"])
1443 AM_CONDITIONAL([ENABLE_FULLSCREEN_API],[test "$enable_fullscreen_api" = "yes"])
1444 AM_CONDITIONAL([ENABLE_MEDIA_STREAM],[test "$enable_media_stream" = "yes"])
1445 AM_CONDITIONAL([ENABLE_LEGACY_NOTIFICATIONS],[test "$enable_legacy_notifications" = "yes"])
1446 AM_CONDITIONAL([ENABLE_NOTIFICATIONS],[test "$enable_notifications" = "yes"])
1447 AM_CONDITIONAL([ENABLE_ORIENTATION_EVENTS],[test "$enable_orientation_events" = "yes"])
1448 AM_CONDITIONAL([ENABLE_SVG],[test "$enable_svg" = "yes"])
1449 AM_CONDITIONAL([ENABLE_SVG_FONTS],[test "$enable_svg_fonts" = "yes"])
1450 AM_CONDITIONAL([ENABLE_COVERAGE],[test "$enable_coverage" = "yes"])
1451 AM_CONDITIONAL([ENABLE_CSS3_FLEXBOX],[test "$enable_css3_flexbox" = "yes"])
1452 AM_CONDITIONAL([ENABLE_FAST_MALLOC],[test "$enable_fast_malloc" = "yes"])
1453 AM_CONDITIONAL([ENABLE_WORKERS],[test "$enable_workers" = "yes"])
1454 AM_CONDITIONAL([ENABLE_SHADOW_DOM],[test "$enable_shadow_dom" = "yes"])
1455 AM_CONDITIONAL([ENABLE_SHARED_WORKERS],[test "$enable_shared_workers" = "yes"])
1456 AM_CONDITIONAL([SVG_FLAGS],[test "$svg_flags" = "yes"])
1457 AM_CONDITIONAL([HTML_FLAGS],[test "$html_flags" = "yes"])
1458 AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"])
1459 AM_CONDITIONAL([ENABLE_WEB_AUDIO],[test "$enable_web_audio" = "yes"])
1460 AM_CONDITIONAL([ENABLE_WEB_TIMING],[test "$enable_web_timing" = "yes"])
1461 AM_CONDITIONAL([ENABLE_OPCODE_STATS],[test "$enable_opcode_stats" = "yes"])
1462 AM_CONDITIONAL([ENABLE_WEBKIT2],[test "$enable_webkit2" = "yes"])
1463 AM_CONDITIONAL([ENABLE_PLUGIN_PROCESS],[test "$enable_plugin_process" = "yes"])
1464 AM_CONDITIONAL([ENABLE_SPELLCHECK],[test "$enable_spellcheck" = "yes"])
1465 AM_CONDITIONAL([ENABLE_LINK_PREFETCH],[test "$enable_link_prefetch" = "yes"])
1466 AM_CONDITIONAL([ENABLE_ANIMATION_API],[test "$enable_animation_api" = "yes"])
1467 AM_CONDITIONAL([ENABLE_REQUEST_ANIMATION_FRAME],[test "$enable_request_animation_frame" = "yes"])
1468 AM_CONDITIONAL([ENABLE_TOUCH_ICON_LOADING],[test "$enable_touch_icon_loading" = "yes"])
1469 AM_CONDITIONAL([ENABLE_REGISTER_PROTOCOL_HANDLER],[test "$enable_register_protocol_handler" = "yes"])
1470 AM_CONDITIONAL([ENABLE_DEVICE_ORIENTATION],[test "$enable_device_orientation" = "yes"])
1471 AM_CONDITIONAL([ENABLE_MUTATION_OBSERVERS],[test "$enable_mutation_observers" = "yes"])
1472 AM_CONDITIONAL([ENABLE_IFRAME_SEAMLESS],[test "$enable_iframe_seamless" = "yes"])
1473 AM_CONDITIONAL([ENABLE_TEXT_AUTOSIZING],[test "$enable_text_autosizing" = "yes"])
1474 AM_CONDITIONAL([ENABLE_CSS_EXCLUSIONS],[test "$enable_css_exclusions" = "yes"])
1475 AM_CONDITIONAL([ENABLE_CSS_REGIONS],[test "$enable_css_regions" = "yes"])
1476 AM_CONDITIONAL([ENABLE_CSS_FILTERS],[test "$enable_css_filters" = "yes"])
1477
1478 # Gtk conditionals
1479 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
1480
1481 AC_CONFIG_FILES([
1482 GNUmakefile
1483 ])
1484  
1485
1486 AC_CONFIG_FILES([
1487 Source/WebKit/gtk/webkit/webkitversion.h
1488 ])
1489
1490 AC_CONFIG_FILES([
1491 Source/WebKit/gtk/${WEBKITGTK_PC_NAME}-${WEBKITGTK_API_VERSION}.pc:Source/WebKit/gtk/webkit.pc.in
1492 Source/WebKit/gtk/JSCore-${WEBKITGTK_API_VERSION}.gir:Source/WebKit/gtk/JSCore.gir.in
1493 Source/JavaScriptCore/javascriptcoregtk-${WEBKITGTK_API_VERSION}.pc:Source/JavaScriptCore/javascriptcoregtk.pc.in
1494 ]
1495 ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
1496 )
1497
1498
1499 if test "$enable_webkit2" = "yes"; then
1500     AC_CONFIG_FILES([
1501     DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitVersion.h:Source/WebKit2/UIProcess/API/gtk/WebKitVersion.h.in
1502     ])
1503
1504     AC_CONFIG_FILES([
1505     Source/WebKit2/webkit2gtk-${WEBKITGTK_API_VERSION}.pc:Source/WebKit2/webkit2gtk.pc.in
1506     ]
1507     ,[WEBKITGTK_API_VERSION=$WEBKITGTK_API_VERSION,WEBKITGTK_PC_NAME=$WEBKITGTK_PC_NAME]
1508     )
1509 fi
1510
1511 AC_OUTPUT
1512
1513 echo "
1514 WebKit was configured with the following options:
1515
1516 Build configuration:
1517  Enable debugging (slow)                                  : $enable_debug
1518  Compile with debug symbols (slow)                        : $enable_debug_symbols
1519  Enable debug features (slow)                             : $enable_debug_features
1520  Enable GCC build optimization                            : $enable_optimizations
1521  Code coverage support                                    : $enable_coverage
1522  Unicode backend                                          : $with_unicode_backend
1523  Font backend                                             : $with_font_backend
1524  Optimized memory allocator                               : $enable_fast_malloc
1525  Accelerated rendering backend                            : $with_acceleration_backend
1526
1527 Features:
1528 =======
1529  WebGL                                                    : $enable_webgl
1530  Accelerated Compositing                                  : $enable_accelerated_compositing
1531  Animation API                                            : $enable_animation_api
1532  Blob support                                             : $enable_blob
1533  Color input support                                      : $enable_input_type_color
1534  CSS3 Flexbox support                                     : $enable_css3_flexbox
1535  CSS box-decoration-break support                         : $enable_css_box_decoration_break
1536  CSS Exclusions support                                   : $enable_css_exclusions
1537  CSS Regions support                                      : $enable_css_regions
1538  CSS Filters support                                      : $enable_css_filters
1539  DeviceOrientation support                                : $enable_device_orientation
1540  Directory upload                                         : $enable_directory_upload
1541  DOM mutation observer support                            : $enable_mutation_observers
1542  Fast Mobile Scrolling                                    : $enable_fast_mobile_scrolling
1543  Filters support                                          : $enable_filters
1544  Fullscreen API support                                   : $enable_fullscreen_api
1545  Gamepad support                                          : $enable_gamepad
1546  Geolocation support                                      : $enable_geolocation
1547  HTML5 channel messaging support                          : $enable_channel_messaging
1548  HTML5 data transfer items support                        : $enable_data_transfer_items
1549  HTML5 FileSystem API support                             : $enable_file_system
1550  HTML5 iframe seamless attribute support                  : $enable_iframe_seamless
1551  HTML5 meter element support                              : $enable_meter_tag
1552  HTML5 microdata support                                  : $enable_microdata
1553  HTML5 progress element support                           : $enable_progress_tag
1554  HTML5 track element support                              : $enable_video_track
1555  HTML5 video element support                              : $enable_video
1556  Icon database support                                    : $enable_icon_database
1557  JavaScript debugger/profiler support                     : $enable_javascript_debugger
1558  JIT compilation                                          : $enable_jit
1559  Legacy WebKitBlobBuilder support                         : $enable_legacy_webkit_blob_builder
1560  Link prefetch support                                    : $enable_link_prefetch
1561  MathML support                                           : $enable_mathml
1562  Media source                                             : $enable_media_source
1563  Media statistics                                         : $enable_media_statistics
1564  Media stream support                                     : $enable_media_stream
1565  MHTML support                                            : $enable_mhtml
1566  Opcode stats                                             : $enable_opcode_stats
1567  Page Visibility API support                              : $enable_page_visibility_api
1568  Quota API support                                        : $enable_quota
1569  Register Protocol Handler support                        : $enable_register_protocol_handler
1570  RequestAnimationFrame support                            : $enable_request_animation_frame
1571  Scripted speech support                                  : $enable_scripted_speech
1572  Shadow DOM support                                       : $enable_shadow_dom
1573  SharedWorkers support                                    : $enable_shared_workers
1574  Speech input support                                     : $enable_input_speech
1575  Spellcheck support                                       : $enable_spellcheck
1576  SQL client-side database storage support                 : $enable_sql_database
1577  SVG fonts support                                        : $enable_svg_fonts
1578  SVG support                                              : $enable_svg
1579  Text Autosizing support                                  : $enable_text_autosizing
1580  Touch Icon Loading support                               : $enable_touch_icon_loading
1581  Web Audio support                                        : $enable_web_audio
1582  WebGL                                                    : $enable_webgl
1583  Web Sockets support                                      : $enable_web_sockets
1584  Web Timing support                                       : $enable_web_timing
1585  Web Workers support                                      : $enable_workers
1586  XSLT support                                             : $enable_xslt
1587
1588 WebKit2 support:
1589  WebKit2 support                                          : $enable_webkit2
1590  WebKit2 plugin process                                   : $enable_plugin_process
1591
1592 GTK+ configuration:
1593  GTK+ version                                             : $with_gtk
1594  GDK target                                               : $with_target
1595  GStreamer version                                        : $with_gstreamer
1596  Introspection support                                    : $enable_introspection
1597  Generate documentation                                   : $enable_gtk_doc
1598 "
1599 if test "$with_unicode_backend" = "glib"; then
1600    echo "     >> WARNING: the glib-based unicode backend is slow and incomplete <<"
1601    echo
1602    echo
1603 fi