2009-10-29 Dimitri Glazkov <dglazkov@chromium.org>
[webbrowser.git] / configure.ac
blobb4230fb7fa17ee51769465eca82eb4104df37b10
1 AC_PREREQ(2.59)
3 m4_define([webkit_major_version], [1])
4 m4_define([webkit_minor_version], [1])
5 m4_define([webkit_micro_version], [16])
7 # This is the version we'll be using as part of our User-Agent string
8 # e.g., AppleWebKit/$(webkit_user_agent_version) ...
10 # Sourced from WebCore/Configurations/Version.xcconfig
11 m4_define([webkit_user_agent_major_version], [531])
12 m4_define([webkit_user_agent_minor_version], [2])
14 AC_INIT([WebKit],[webkit_major_version.webkit_minor_version.webkit_micro_version],[http://bugs.webkit.org/])
16 AC_CONFIG_MACRO_DIR([autotools])
17 AC_CONFIG_AUX_DIR([autotools])
18 AC_SUBST(ACLOCAL_AMFLAGS, "-I autotools")
20 AC_CONFIG_HEADERS([autotoolsconfig.h])
21 AC_CANONICAL_HOST
23 WEBKIT_MAJOR_VERSION=webkit_major_version
24 WEBKIT_MINOR_VERSION=webkit_minor_version
25 WEBKIT_MICRO_VERSION=webkit_micro_version
26 WEBKIT_USER_AGENT_MAJOR_VERSION=webkit_user_agent_major_version
27 WEBKIT_USER_AGENT_MINOR_VERSION=webkit_user_agent_minor_version
28 AC_SUBST(WEBKIT_MAJOR_VERSION)
29 AC_SUBST(WEBKIT_MINOR_VERSION)
30 AC_SUBST(WEBKIT_MICRO_VERSION)
31 AC_SUBST(WEBKIT_USER_AGENT_MAJOR_VERSION)
32 AC_SUBST(WEBKIT_USER_AGENT_MINOR_VERSION)
34 AC_CONFIG_SRCDIR([WebCore/config.h])
36 dnl # Libtool library version, not to confuse with API version
37 dnl # see http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html#Libtool-versioning
38 LIBWEBKITGTK_VERSION=14:0:12
39 AC_SUBST([LIBWEBKITGTK_VERSION])
41 AM_INIT_AUTOMAKE([foreign subdir-objects tar-ustar])
43 # Use AM_SILENT_RULES if present
44 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
46 # host checking - inspired by the GTK+ configure.in
47 # TODO: move these to webkit.m4?
48 AC_MSG_CHECKING([for native Win32])
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])
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
71 case "$host_os" in
72      gnu* | linux* | k*bsd*-gnu)
73        os_gnu=yes
74        ;;
75      *)
76        os_gnu=no
77        ;;
78 esac
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
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]))
97 AC_PATH_PROG(GPERF, gperf)
98 if test -z "$GPERF"; then
99    AC_MSG_ERROR([You need the 'gperf' hash function generator to compile WebKit])
102 # pthread (not needed on Windows)
103 if test "$os_win32" = "no"; then
104 AC_CHECK_HEADERS([pthread.h],
105                  AC_DEFINE([HAVE_PTHREAD_H],[1],[Define if pthread exists]),
106                  AC_MSG_ERROR([pthread support is required to build WebKit]))
109 # check for libjpeg the way Gtk does it.
110 AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,
111                    jpeg_ok=yes, jpeg_ok=no
112                    AC_MSG_ERROR([JPEG library (libjpeg) not found]))
113 if test "$jpeg_ok" = yes; then
114    AC_MSG_CHECKING([for jpeglib])
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
131 AC_SUBST([JPEG_LIBS])
133 # Check for libpng the way Gtk+ does it
134 AC_MSG_CHECKING(for libpng12)
135 if $PKG_CONFIG --exists libpng12 ; then
136     AC_MSG_RESULT(yes)
137     PNG_LIBS=`$PKG_CONFIG --libs libpng12`
138 else
139   AC_MSG_RESULT(no)
140   AC_CHECK_LIB(png, png_read_info,
141     [AC_CHECK_HEADER(png.h,
142       png_ok=yes,
143       png_ok=no)],
144     AC_MSG_ERROR([PNG library (libpng) not found]), -lz -lm)
145   if test "$png_ok" = yes; then
146     AC_MSG_CHECKING([for png_structp in png.h])
147     AC_TRY_COMPILE([#include <png.h>],
148       [png_structp pp; png_infop info; png_colorp cmap; png_create_read_struct;],
149       png_ok=yes,
150       png_ok=no)
151     AC_MSG_RESULT($png_ok)
152     if test "$png_ok" = yes; then
153       PNG_LIBS='-lpng -lz'
154     else
155       AC_MSG_ERROR([PNG library (libpng) not found])
156     fi
157   else
158    AC_MSG_ERROR([PNG library (libpng) not found])
159   fi
161 AC_SUBST([PNG_LIBS])
163 # determine the GDK/GTK+ target
164 AC_MSG_CHECKING([the target windowing system])
165 AC_ARG_WITH(target,
166             AC_HELP_STRING([--with-target=@<:@x11/win32/quartz/directfb@:>@],
167                            [Select webkit target [default=x11]]),
168             [],[with_target="x11"])
170 case "$with_target" in
171      x11|win32|quartz|directfb) ;;
172      *) AC_MSG_ERROR([Invalid target: must be x11, quartz, win32, or directfb.]) ;;
173 esac
175 AC_MSG_RESULT([$with_target])
177 AC_MSG_CHECKING([for Hildon UI extensions])
178 AC_ARG_WITH(hildon,
179             AC_HELP_STRING([--with-hildon],
180                            [Use Hildon UI extensions [default=no]]),
181             [],[with_hildon="no"])
182 AC_MSG_RESULT([$with_hildon])
184 if test "$with_hildon" = "yes"; then
185     HILDON_CPPFLAGS="-DMAEMO_CHANGES"
186     PKG_CHECK_MODULES([HILDON], [hildon-1])
187     AC_SUBST([HILDON_CPPFLAGS])
188     AC_SUBST([HILDON_CFLAGS])
189     AC_SUBST([HILDON_LIBS])
192 # minimum base dependencies
193 LIBSOUP_REQUIRED_VERSION=2.27.91
194 CAIRO_REQUIRED_VERSION=1.2
195 FONTCONFIG_REQUIRED_VERSION=2.4
196 FREETYPE2_REQUIRED_VERSION=9.0
197 LIBXML_REQUIRED_VERSION=2.6
199 # minimum GTK+ base dependencies
200 PANGO_REQUIRED_VERSION=1.12
201 GTK_REQUIRED_VERSION=2.10
203 # optional modules
204 LIBXSLT_REQUIRED_VERSION=1.1.7
205 SQLITE_REQUIRED_VERSION=3.0
206 GSTREAMER_REQUIRED_VERSION=0.10
207 ENCHANT_REQUIRED_VERSION=0.22
208 GAIL_REQUIRED_VERSION=1.8
210 # Available modules
212 # glib - glib and includes gthread
213 # unicode - check and identify which unicode backend to use
215 # todo: webcore gtk
216 WEBKIT_CHECK_DEPENDENCIES([glib unicode])
218 GETTEXT_PACKAGE=$PACKAGE
219 AC_SUBST(GETTEXT_PACKAGE)
220 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",
221                    [The gettext catalog name])
223 PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= $LIBXML_REQUIRED_VERSION)
224 AC_SUBST(LIBXML_CFLAGS)
225 AC_SUBST(LIBXML_LIBS)
227 PKG_CHECK_MODULES(PANGO, 
228                   [pango >= $PANGO_REQUIRED_VERSION
229                    pangoft2])
230 AC_SUBST(PANGO_CFLAGS)
231 AC_SUBST(PANGO_LIBS)
233 PKG_CHECK_MODULES(ENCHANT, enchant >= $ENCHANT_REQUIRED_VERSION)
234 AC_SUBST(ENCHANT_CFLAGS)
235 AC_SUBST(ENCHANT_LIBS)
237 PKG_CHECK_MODULES(GAIL, gail >= $GAIL_REQUIRED_VERSION)
238 AC_SUBST(GAIL_CFLAGS)
239 AC_SUBST(GAIL_LIBS)
241 # check for target-specific dependencies
242 if test "$with_target" = "directfb"; then
243    PKG_CHECK_MODULES(CAIRO, cairo-directfb >= $CAIRO_REQUIRED_VERSION)
244    PKG_CHECK_MODULES(GTK, gtk+-directfb-2.0 >= $GTK_REQUIRED_VERSION)
245    AC_DEFINE([WTF_PLATFORM_DIRECTFB],[1],[Define if target is DirectFB])
246 else
247    PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRED_VERSION)
248    PKG_CHECK_MODULES(GTK, gtk+-2.0 >= $GTK_REQUIRED_VERSION)
250    if test "$with_target" = "x11" && test "$os_win32" = "no"; then
251       # check for XT
252       PKG_CHECK_MODULES([XT],
253                         [xt],
254                         [xt_has_pkg_config=yes],
255                         [xt_has_pkg_config=no])
256       # some old versions of Xt do not provide xt.pc, so try to link against Xt
257       # and if it's installed fall back to just adding -lXt
258       if test "$xt_has_pkg_config" = "no"; then
259          # using AC_CHECK_LIB instead of AC_SEARCH_LIB is fine in this case as
260          # we don't care about the XtOpenDisplay symbol but only about the
261          # existence of libXt
262          AC_CHECK_LIB([Xt], [XtOpenDisplay],
263                       [XT_CFLAGS=""; XT_LIBS="-lXt"],
264                       [AC_MSG_ERROR([X Toolkit Intrinsics library (libXt) not found])])
265       fi
266       AC_SUBST([XT_CFLAGS])
267       AC_SUBST([XT_LIBS])
268       AC_DEFINE([WTF_PLATFORM_X11],[1],[Define if target is X11])
269    fi
271 AC_SUBST(GTK_CFLAGS)
272 AC_SUBST(GTK_LIBS)
273 AC_SUBST(CAIRO_CFLAGS)
274 AC_SUBST(CAIRO_LIBS)
276 # check whether to build with debugging enabled
277 AC_MSG_CHECKING([whether to do a debug build])
278 AC_ARG_ENABLE(debug,
279               AC_HELP_STRING([--enable-debug],
280                              [turn on debugging [default=no]]),
281               [],[enable_debug="no"])
282 AC_MSG_RESULT([$enable_debug])
284 # check whether to enable optimized builds
285 AC_MSG_CHECKING([whether to enable optimized builds])
286 AC_ARG_ENABLE(optimizations,
287               AC_HELP_STRING([--enable-optimizations],
288                              [turn on optimize builds (GCC only)
289                              [default=yes]]),
290               [enable_optimizations=$enableval],
291               [if test "$enable_debug" = "yes"; then enable_optimizations="no"; else enable_optimizations="yes"; fi])
292 AC_MSG_RESULT([$enable_optimizations])
294 # check whether to enable dashboard support
295 AC_MSG_CHECKING([whether to enable Dashboard support])
296 AC_ARG_ENABLE(dashboard_support,
297               AC_HELP_STRING([--enable-dashboard-support],
298                              [enable Dashboard support [default=yes]]),
299               [],[enable_dashboard_support="yes"])
300 AC_MSG_RESULT([$enable_dashboard_support])
302 # check whether to enable 3D transforms support
303 AC_MSG_CHECKING([whether to enable support for 3D Transforms])
304 AC_ARG_ENABLE(3D_transforms,
305               AC_HELP_STRING([--enable-3D-transforms],
306                              [enable support for 3D transforms [default=no]]),
307               [],[enable_3D_transforms="no"])
308 AC_MSG_RESULT([$enable_3D_transforms])
310 # check whether to enable channel messaging support
311 AC_MSG_CHECKING([whether to enable HTML5 Channel Messaging support])
312 AC_ARG_ENABLE(channel_messaging,
313               AC_HELP_STRING([--enable-channel-messaging],
314                              [enable HTML5 channel messaging support [default=yes]]),
315               [],[enable_channel_messaging="yes"])
316 AC_MSG_RESULT([$enable_channel_messaging])
318 # check whether to enable JavaScript debugger/profiler support
319 AC_MSG_CHECKING([whether to enable JavaScript debugger/profiler support])
320 AC_ARG_ENABLE(javascript_debugger,
321               AC_HELP_STRING([--enable-javascript-debugger],
322                              [enable JavaScript debugger/profiler support [default=yes]]),
323               [],[enable_javascript_debugger="yes"])
324 AC_MSG_RESULT([$enable_javascript_debugger])
326 # check whether to enable HTML5 Offline Web Applications support
327 AC_MSG_CHECKING([whether to enable HTML5 offline web applications support])
328 AC_ARG_ENABLE(offline_web_applications,
329               AC_HELP_STRING([--enable-offline-web-applications],
330                              [enable HTML5 offline web applications support [default=yes]]),
331               [],[enable_offline_web_applications="yes"])
332 AC_MSG_RESULT([$enable_offline_web_applications])
334 # check whether to enable HTML5 client-side session and persitent storage support
335 AC_MSG_CHECKING([whether to enable HTML5 client-side session and persistent storage support])
336 AC_ARG_ENABLE(dom_storage,
337               AC_HELP_STRING([--enable-dom-storage],
338                              [enable HTML5 client-side session and persistent storage support [default=yes]]),
339               [],[enable_dom_storage="yes"])
340 AC_MSG_RESULT([$enable_dom_storage])
342 # check whether to build with database support
343 AC_MSG_CHECKING([whether to enable HTML5 client-side database storage support])
344 AC_ARG_ENABLE(database,
345               AC_HELP_STRING([--enable-database],
346                              [enable HTML5 client-side database storage support [default=yes]]),
347               [],[enable_database="yes"])
348 AC_MSG_RESULT([$enable_database])
350 # check whether to build with server-sent events support
351 AC_MSG_CHECKING([whether to enable HTML5 server-sent events support])
352 AC_ARG_ENABLE(eventsource,
353               AC_HELP_STRING([--enable-eventsource],
354                              [enable HTML5 server-sent events support [default=yes]]),
355               [],[enable_eventsource="yes"])
356 AC_MSG_RESULT([$enable_eventsource])
358 # check whether to build with icon database support
359 AC_MSG_CHECKING([whether to enable icon database support])
360 AC_ARG_ENABLE(icon_database,
361               AC_HELP_STRING([--enable-icon-database],
362                              [enable icon database [default=yes]]),
363               [],[enable_icon_database="yes"])
364 AC_MSG_RESULT([$enable_icon_database])
366 # check whether to enable HTML5 datalist support
367 AC_MSG_CHECKING([whether to enable HTML5 datalist support])
368 AC_ARG_ENABLE(datalist,
369               AC_HELP_STRING([--enable-datalist],
370                              [enable HTML5 datalist support [default=yes]]),
371               [],[enable_datalist="yes"])
372 AC_MSG_RESULT([$enable_datalist])
374 # check whether to enable HTML5 ruby support
375 AC_MSG_CHECKING([whether to enable HTML5 ruby support])
376 AC_ARG_ENABLE(ruby,
377               AC_HELP_STRING([--enable-ruby],
378                              [enable HTML5 ruby support [default=yes]]),
379               [],[enable_ruby="yes"])
380 AC_MSG_RESULT([$enable_ruby])
382 # check whether to enable HTML5 audio/video support
383 AC_MSG_CHECKING([whether to enable HTML5 video support])
384 AC_ARG_ENABLE(video,
385               AC_HELP_STRING([--enable-video],
386                              [enable HTML5 video support [default=yes]]),
387               [],[enable_video="yes"])
388 AC_MSG_RESULT([$enable_video])
390 # check whether to enable XPath support
391 AC_MSG_CHECKING([whether to enable XPath support])
392 AC_ARG_ENABLE(xpath,
393               AC_HELP_STRING([--enable-xpath],
394                              [enable support for XPath [default=yes]]),
395               [],[enable_xpath="yes"])
396 AC_MSG_RESULT([$enable_xpath])
398 # check whether to enable XSLT support
399 AC_MSG_CHECKING([whether to enable XSLT support])
400 AC_ARG_ENABLE(xslt,
401               AC_HELP_STRING([--enable-xslt],
402                              [enable support for XSLT [default=yes]]),
403               [],[enable_xslt="yes"])
404 AC_MSG_RESULT([$enable_xslt])
406 # check whether to enable geolocation support
407 AC_MSG_CHECKING([whether to enable geolocation support])
408 AC_ARG_ENABLE(geolocation,
409               AC_HELP_STRING([--enable-geolocation],
410                              [enable support for geolocation [default=no]]),
411               [],[enable_geolocation="no"])
412 AC_MSG_RESULT([$enable_geolocation])
414 # check whether to enable MathML support
415 AC_MSG_CHECKING([whether to enable MathML support])
416 AC_ARG_ENABLE(mathml,
417               AC_HELP_STRING([--enable-mathml],
418                              [enable support for MathML [default=no]]),
419               [],[enable_mathml="no"])
420 AC_MSG_RESULT([$enable_mathml])
422 # check whether to enable SVG support
423 AC_MSG_CHECKING([whether to enable SVG support])
424 AC_ARG_ENABLE(svg,
425               AC_HELP_STRING([--enable-svg],
426                              [enable support for SVG [default=yes]]),
427               [],[enable_svg="yes"])
428 AC_MSG_RESULT([$enable_svg])
430 # check whether to enable WML support
431 AC_MSG_CHECKING([whether to enable WML support])
432 AC_ARG_ENABLE(wml,
433               AC_HELP_STRING([--enable-wml],
434                              [enable support for WML [default=no]]),
435               [],[enable_wml="no"])
436 AC_MSG_RESULT([$enable_wml])
438 # check whether to enable SharedWorkers support
439 AC_MSG_CHECKING([whether to enable SharedWorkers support])
440 AC_ARG_ENABLE(shared_workers,
441               AC_HELP_STRING([--enable-shared-workers],
442                              [enable support for SharedWorkers [default=no]]),
443               [],[enable_shared_workers="no"])
444 AC_MSG_RESULT([$enable_shared_workers])
446 # check whether to enable Web Workers support
447 AC_MSG_CHECKING([whether to enable Web Workers support])
448 AC_ARG_ENABLE(workers,
449               AC_HELP_STRING([--enable-workers],
450                              [enable support for Web Workers [default=yes]]),
451               [],[enable_workers="yes"])
452 AC_MSG_RESULT([$enable_workers])
454 # turn off svg features if --disable-svg is requested
455 if test "$enable_svg" = "no"; then
456    enable_svg_animation=no
457    enable_svg_fonts=no
458    enable_svg_foreign_object=no
459    enable_svg_as_image=no
460    enable_svg_use=no
463 # check whether to enable support for SVG animation
464 AC_MSG_CHECKING([whether to enable support for SVG animation])
465 AC_ARG_ENABLE(svg_animation,
466               AC_HELP_STRING([--enable-svg-animation],
467                              [enable support for SVG animation (experimental) [default=yes]]),
468               [],[enable_svg_animation="yes"])
469 AC_MSG_RESULT([$enable_svg_animation])
471 # check whether to enable support for filters
472 AC_MSG_CHECKING([whether to enable support for filters])
473 AC_ARG_ENABLE(filters,
474               AC_HELP_STRING([--enable-filters],
475                              [enable support for filters (experimental) [default=no]]),
476               [],[enable_filters="no"])
477 AC_MSG_RESULT([$enable_filters])
479 # check whether to enable support for SVG fonts
480 AC_MSG_CHECKING([whether to enable support for SVG fonts])
481 AC_ARG_ENABLE(svg_fonts,
482               AC_HELP_STRING([--enable-svg-fonts],
483                              [enable support for SVG fonts (experimental) [default=yes]]),
484               [],[enable_svg_fonts="yes"])
485 AC_MSG_RESULT([$enable_svg_fonts])
487 # check whether to enable foreign objects support for SVG
488 AC_MSG_CHECKING([whether to enable support for SVG foreign objects])
489 AC_ARG_ENABLE(svg_foreign_object,
490               AC_HELP_STRING([--enable-svg-foreign-object],
491                              [enable support for SVG foreign objects (experimental) [default=yes]]),
492               [],[enable_svg_foreign_object="yes"])
493 AC_MSG_RESULT([$enable_svg_foreign_object])
495 # check whether to enable SVG As Image support
496 AC_MSG_CHECKING([whether to enable SVG as Image support])
497 AC_ARG_ENABLE(svg_as_image,
498               AC_HELP_STRING([--enable-svg-as-image],
499                              [enable SVG as Image support (experimental) [default=yes]]),
500               [],[enable_svg_as_image="yes"])
501 AC_MSG_RESULT([$enable_svg_as_image])
503 # check whether to enable SVG USE element support
504 AC_MSG_CHECKING([whether to enable support for SVG use element])
505 AC_ARG_ENABLE(svg_use,
506               AC_HELP_STRING([--enable-svg-use],
507                              [enable SVG use element support (experimental) [default=yes]]),
508               [],[enable_svg_use="yes"])
509 AC_MSG_RESULT([$enable_svg_use])
511 # check for SVG features, enabling SVG if necessary
512 if test "$enable_svg_animation" = "yes" || \
513    test "$enable_svg_fonts" = "yes" || \
514    test "$enable_svg_foreign_object" = "yes" || \
515    test "$enable_svg_as_image" = "yes" || \
516    test "$enable_svg_use" = "yes"; then
517    svg_flags=yes
518    if test "$enable_svg" = "no"; then
519        AC_MSG_WARN([SVG feature(s) requested but SVG is disabled.. Enabling SVG support])
520        enable_svg=yes
521    fi
524 # check whether to enable Web Socket support
525 AC_MSG_CHECKING([whether to enable Web Sockets support])
526 AC_ARG_ENABLE(web_sockets,
527               AC_HELP_STRING([--enable-web-sockets],
528                              [enable support for Web Sockets [default=no]]),
529               [],[enable_web_sockets="no"])
530 AC_MSG_RESULT([$enable_web_sockets])
532 # check whether to enable code coverage
533 AC_MSG_CHECKING([whether to enable code coverage support])
534 AC_ARG_ENABLE(coverage,
535               AC_HELP_STRING([--enable-coverage],
536                              [enable code coverage support [default=no]]),
537               [],[enable_coverage="no"])
538 AC_MSG_RESULT([$enable_coverage])
540 # check whether to enable FastMalloc
541 AC_MSG_CHECKING([whether to enable optimized memory allocator])
542 AC_ARG_ENABLE(fast_malloc,
543               AC_HELP_STRING([--enable-fast-malloc],
544                              [enable optimized memory allocator default=yes, default=no for debug builds]),
545               [],[if test "$enable_debug" = "yes"; then enable_fast_malloc="no"; else enable_fast_malloc="yes"; fi])
546 AC_MSG_RESULT([$enable_fast_malloc])
548 AC_MSG_CHECKING([whether to enable JIT compilation])
549 AC_ARG_ENABLE([jit],
550               AC_HELP_STRING([--enable-jit],
551                              [Enable JIT compilation default=yes]),
552               [],[enable_jit="yes"])
553 if test "$enable_jit" = "yes"; then
554     case "$host_cpu" in
555         i*86|x86_64)
556             AC_DEFINE([ENABLE_JIT], [1], [Define to enable JIT])
557             AC_DEFINE([ENABLE_YARR], [1], [Define to enable YARR])
558             AC_DEFINE([ENABLE_YARR_JIT], [1], [Define to enable YARR JIT])
559             AC_DEFINE([ENABLE_JIT_OPTIMIZE_CALL], [1], [Define to enable optimizing calls])
560             AC_DEFINE([ENABLE_JIT_OPTIMIZE_PROPERTY_ACCESS], [1], [Define to enable optimized property access])
561             AC_DEFINE([ENABLE_JIT_OPTIMIZE_ARITHMETIC], [1], [Define to enable optimized arithmetic])
562             case "$host_cpu" in
563                 i*86)
564                     AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_VA_LIST], [1], [Use stub va_list])
565                 ;;
566                 x86_64)
567                     AC_DEFINE([WTF_USE_JIT_STUB_ARGUMENT_REGISTER], [1], [Use stub register])
568                     AC_DEFINE([WTF_USE_ALTERNATE_JSIMMEDIATE], [1], [Use alternate JSImmediate])
569                 ;;
570             esac
571         ;;
572         *)
573             enable_jit="no (CPU '$host_cpu' not supported)"
574         ;;
575     esac
577 AC_MSG_RESULT([$enable_jit])
579 # GObject Introspection
580 AC_MSG_CHECKING([whether to enable GObject introspection support])
581 AC_ARG_ENABLE([introspection],
582   [AS_HELP_STRING([--enable-introspection],[Enable GObject introspection (default: disabled)])],
583   [],[enable_introspection=no])
584 AC_MSG_RESULT([$enable_introspection])
586 G_IR_SCANNER=
587 G_IR_COMPILER=
588 G_IR_GENERATE=
589 GIRDIR=
590 GIRTYPELIBDIR=
592 if test "$enable_introspection" = "yes"; then
593   GOBJECT_INTROSPECTION_REQUIRED=0.6.2
594   PKG_CHECK_MODULES([INTROSPECTION],[gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED])
595   
596   G_IR_SCANNER="$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)"
597   G_IR_COMPILER="$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)"
598   G_IR_GENERATE="$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)"
599   GIRDIR="$($PKG_CONFIG --variable=girdir gobject-introspection-1.0)"
600   GIRTYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
602   AC_DEFINE([ENABLE_INTROSPECTION],[1],[Define to enable GObject introspection support])
605 AC_SUBST([G_IR_SCANNER])
606 AC_SUBST([G_IR_COMPILER])
607 AC_SUBST([G_IR_GENERATE])
608 AC_SUBST([GIRDIR])
609 AC_SUBST([GIRTYPELIBDIR])
611 # determine the font backend
612 AC_MSG_CHECKING([the font backend to use])
613 AC_ARG_WITH(font_backend,
614             AC_HELP_STRING([--with-font-backend=@<:@freetype/pango@:>@],
615                            [Select font backend [default=freetype]]),
616             [],[with_font_backend="freetype"])
618 case "$with_font_backend" in
619      freetype|pango) ;;
620      *) AC_MSG_ERROR([Invalid font backend: must be freetype or pango.]) ;;
621 esac
622 AC_MSG_RESULT([$with_font_backend])
624 # Add '-g' flag to gcc if it's debug build
625 if test "$enable_debug" = "yes"; then
626    CXXFLAGS="$CXXFLAGS -g"
627    CFLAGS="$CFLAGS -g"
628 else
629    AC_DEFINE([NDEBUG], [1], [Define to disable debugging features])
632 # Add the appropriate 'O' level for optimized builds
633 if test "$enable_optimizations" = "yes"; then
634    CXXFLAGS="$CXXFLAGS -O2"
635    CFLAGS="$CFLAGS -O2"
636 else
637    CXXFLAGS="$CXXFLAGS -O0"
638    CFLAGS="$CFLAGS -O0"
641 PKG_CHECK_MODULES([LIBSOUP],
642                   [libsoup-2.4 >= $LIBSOUP_REQUIRED_VERSION])
643 AC_SUBST([LIBSOUP_CFLAGS])
644 AC_SUBST([LIBSOUP_LIBS])
646 # check if FreeType/FontConfig are available
647 if test "$with_font_backend" = "freetype"; then
648    if test "$with_target" = "directfb"; then
649    PKG_CHECK_MODULES([FREETYPE],
650                      [fontconfig >= $FONTCONFIG_REQUIRED_VERSION
651                      freetype2 >= $FREETYPE2_REQUIRED_VERSION])
652    else
653    PKG_CHECK_MODULES([FREETYPE],
654                      [cairo-ft
655                      fontconfig >= $FONTCONFIG_REQUIRED_VERSION
656                      freetype2 >= $FREETYPE2_REQUIRED_VERSION])
657    fi
658    AC_SUBST([FREETYPE_CFLAGS])
659    AC_SUBST([FREETYPE_LIBS])
662 # check if sqlite 3 is available
663 if test "$enable_icon_database" = "yes" || \
664    test "$enable_database" = "yes" || \
665    test "$enable_offline_web_applications" = "yes" || \
666    test "$enable_dom_storage" = "yes"; then
667    PKG_CHECK_MODULES([SQLITE3],
668                      [sqlite3 >= $SQLITE_REQUIRED_VERSION],
669                      [sqlite3_has_pkg_config=yes],
670                      [sqlite3_has_pkg_config=no])
671    if test "$sqlite3_has_pkg_config" = "no"; then
672       AC_SEARCH_LIBS([sqlite3_open16], [sqlite3],
673                      [SQLITE3_LIBS="$LIBS";SQLITE3_CFLAGS="-I $srcdir/WebKitLibraries/WebCoreSQLite3"],
674                      [AC_MSG_ERROR([SQLite3 is required to enable Database support])])
675    fi
676    AC_SUBST([SQLITE3_CFLAGS])
677    AC_SUBST([SQLITE3_LIBS])
680 # check if libxslt is available
681 if test "$enable_xslt" = "yes"; then
682    PKG_CHECK_MODULES([LIBXSLT],[libxslt >= $LIBXSLT_REQUIRED_VERSION])
683    AC_SUBST([LIBXSLT_CFLAGS])
684    AC_SUBST([LIBXSLT_LIBS])
687 # check if geoclue is available
688 if test "$enable_geolocation" = "yes"; then
689     PKG_CHECK_MODULES([GEOCLUE], [geoclue])
690     AC_SUBST([GEOCLUE_CFLAGS])
691     AC_SUBST([GEOCLUE_LIBS])
694 # check if gstreamer is available
695 if test "$enable_video" = "yes"; then
696    PKG_CHECK_MODULES([GSTREAMER],
697                      [gstreamer-0.10 >= $GSTREAMER_REQUIRED_VERSION
698                      gstreamer-base-0.10
699                      gstreamer-pbutils-0.10
700                      gstreamer-plugins-base-0.10
701                      gstreamer-video-0.10])
702    AC_SUBST([GSTREAMER_CFLAGS])
703    AC_SUBST([GSTREAMER_LIBS])
706 # check for code coverage support
707 if test "$enable_coverage" = "yes"; then
708    COVERAGE_CFLAGS="-MD"
709    COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
710    AC_SUBST([COVERAGE_CFLAGS])
711    AC_SUBST([COVERAGE_LDFLAGS])
714 # check for HTML features
715 if test "$enable_video" = "yes"; then
716     html_flags=yes
719 GTK_DOC_CHECK([1.10])
721 # OS conditionals
722 AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
723 AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
724 AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
725 AM_CONDITIONAL([OS_GNU],[test "$os_gnu" = "yes"])
726 AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
728 # target conditionals
729 AM_CONDITIONAL([TARGET_X11], [test "$with_target" = "x11"])
730 AM_CONDITIONAL([TARGET_WIN32], [test "$with_target" = "win32"])
731 AM_CONDITIONAL([TARGET_QUARTZ], [test "$with_target" = "quartz"])
732 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_target" = "directfb"])
734 # Unicode backend conditionals
735 AM_CONDITIONAL([USE_ICU_UNICODE], [test "$with_unicode_backend" = "icu"])
736 AM_CONDITIONAL([USE_GLIB_UNICODE], [test "$with_unicode_backend" = "glib"])
738 # Font backend conditionals
739 AM_CONDITIONAL([USE_FREETYPE], [test "$with_font_backend" = "freetype"])
740 AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"])
742 # WebKit feature conditionals
743 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"])
744 AM_CONDITIONAL([ENABLE_DASHBOARD_SUPPORT],[test "$enable_dashboard_support" = "yes"])
745 AM_CONDITIONAL([ENABLE_3D_TRANSFORMS],[test "$enable_3D_transforms" = "yes"])
746 AM_CONDITIONAL([ENABLE_CHANNEL_MESSAGING],[test "$enable_channel_messaging" = "yes"])
747 AM_CONDITIONAL([ENABLE_JAVASCRIPT_DEBUGGER],[test "$enable_javascript_debugger" = "yes"])
748 AM_CONDITIONAL([ENABLE_OFFLINE_WEB_APPLICATIONS],[test "$enable_offline_web_applications" = "yes"])
749 AM_CONDITIONAL([ENABLE_DOM_STORAGE],[test "$enable_dom_storage" = "yes"])
750 AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"])
751 AM_CONDITIONAL([ENABLE_DATALIST],[test "$enable_datalist" = "yes"])
752 AM_CONDITIONAL([ENABLE_EVENTSOURCE],[test "$enable_eventsource" = "yes"])
753 AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
754 AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"])
755 AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
756 AM_CONDITIONAL([ENABLE_FILTERS],[test "$enable_filters" = "yes"])
757 AM_CONDITIONAL([ENABLE_GEOLOCATION], [test "$enable_geolocation" = "yes"])
758 AM_CONDITIONAL([ENABLE_MATHML], [test "$enable_mathml" = "yes"])
759 AM_CONDITIONAL([ENABLE_RUBY],[test "$enable_ruby" = "yes"])
760 AM_CONDITIONAL([ENABLE_VIDEO],[test "$enable_video" = "yes"])
761 AM_CONDITIONAL([ENABLE_NOTIFICATIONS],[test "$enable_notifications" = "yes"])
762 AM_CONDITIONAL([ENABLE_ORIENTATION_EVENTS],[test "$enable_orientation_events" = "yes"])
763 AM_CONDITIONAL([ENABLE_SVG],[test "$enable_svg" = "yes"])
764 AM_CONDITIONAL([ENABLE_SVG_ANIMATION],[test "$enable_svg_animation" = "yes"])
765 AM_CONDITIONAL([ENABLE_SVG_FONTS],[test "$enable_svg_fonts" = "yes"])
766 AM_CONDITIONAL([ENABLE_SVG_FOREIGN_OBJECT],[test "$enable_svg_foreign_object" = "yes"])
767 AM_CONDITIONAL([ENABLE_SVG_AS_IMAGE],[test "$enable_svg_as_image" = "yes"])
768 AM_CONDITIONAL([ENABLE_SVG_USE],[test "$enable_svg_use" = "yes"])
769 AM_CONDITIONAL([ENABLE_COVERAGE],[test "$enable_coverage" = "yes"])
770 AM_CONDITIONAL([ENABLE_FAST_MALLOC],[test "$enable_fast_malloc" = "yes"])
771 AM_CONDITIONAL([ENABLE_WML],[test "$enable_wml" = "yes"])
772 AM_CONDITIONAL([ENABLE_WORKERS],[test "$enable_workers" = "yes"])
773 AM_CONDITIONAL([ENABLE_SHARED_WORKERS],[test "$enable_shared_workers" = "yes"])
774 AM_CONDITIONAL([SVG_FLAGS],[test "$svg_flags" = "yes"])
775 AM_CONDITIONAL([HTML_FLAGS],[test "$html_flags" = "yes"])
776 AM_CONDITIONAL([ENABLE_WEB_SOCKETS],[test "$enable_web_sockets" = "yes"])
778 # Gtk conditionals
779 AM_CONDITIONAL([ENABLE_INTROSPECTION],[test "$enable_introspection" = "yes"])
782 AC_CONFIG_FILES([
783 GNUmakefile
784 WebKit/gtk/webkit-1.0.pc:WebKit/gtk/webkit.pc.in
785 WebKit/gtk/webkit/webkitversion.h
786 WebKit/gtk/docs/GNUmakefile
787 WebKit/gtk/docs/version.xml
791 AC_OUTPUT
793 echo "
794 WebKit was configured with the following options:
796 Build configuration:
797  Enable debugging (slow)                                  : $enable_debug
798  Enable GCC build optimization                            : $enable_optimizations
799  Code coverage support                                    : $enable_coverage
800  Unicode backend                                          : $with_unicode_backend
801  Font backend                                             : $with_font_backend
802  Optimized memory allocator                               : $enable_fast_malloc
803 Features:
804  3D Transforms                                            : $enable_3D_transforms
805  JIT compilation                                          : $enable_jit
806  Dashboard support                                        : $enable_dashboard_support
807  Filters support                                          : $enable_filters
808  Geolocation support                                      : $enable_geolocation
809  JavaScript debugger/profiler support                     : $enable_javascript_debugger
810  MathML support                                           : $enable_mathml
811  HTML5 offline web applications support                   : $enable_offline_web_applications
812  HTML5 channel messaging support                          : $enable_channel_messaging
813  HTML5 client-side session and persistent storage support : $enable_dom_storage
814  HTML5 client-side database storage support               : $enable_database
815  HTML5 ruby support                                       : $enable_ruby
816  HTML5 server-sent events support                         : $enable_eventsource
817  HTML5 video element support                              : $enable_video
818  Icon database support                                    : $enable_icon_database
819  SharedWorkers support                                    : $enable_shared_workers
820  SVG support                                              : $enable_svg
821  SVG animation support                                    : $enable_svg_animation
822  SVG fonts support                                        : $enable_svg_fonts
823  SVG foreign object support                               : $enable_svg_foreign_object
824  SVG as image support                                     : $enable_svg_as_image
825  SVG use element support                                  : $enable_svg_use
826  WML support                                              : $enable_wml
827  Web Sockets support                                      : $enable_web_sockets
828  Web Workers support                                      : $enable_workers
829  XPATH support                                            : $enable_xpath
830  XSLT support                                             : $enable_xslt
831 GTK+ configuration:
832  GDK target                                               : $with_target
833  Hildon UI extensions                                     : $with_hildon
834  Introspection support                                    : $enable_introspection
836 if test "$with_unicode_backend" = "glib"; then
837    echo "     >> WARNING: the glib-based unicode backend is slow and incomplete <<"
838    echo
839    echo