1 AC_INIT([WebKit],[0.1],[http://bugs.webkit.org/])
5 AC_CONFIG_HEADERS([aconfig.h])
6 AC_CONFIG_SRCDIR([WebCore/config.h])
8 # see http://www.gnu.org/software/libtool/manual.html#Versioning
9 LIBWEBKITGTK_VERSION=1:0:0
10 AC_SUBST([LIBWEBKITGTK_VERSION])
12 AM_INIT_AUTOMAKE([foreign subdir-objects])
16 # host checking - inspired by the GTK+ configure.in
17 # TODO: os_mac, os_bsd
18 AC_MSG_CHECKING([for native Win32])
27 AC_MSG_RESULT([$os_win32])
38 # If CXXFLAGS and CFLAGS are unset, default to -O2
39 # This is to tell automake not to include '-g' if CXXFLAGS is not set
40 # For more info - http://www.gnu.org/software/automake/manual/autoconf.html#C_002b_002b-Compiler
41 if test -z "$CXXFLAGS"; then
44 if test -z "$CFLAGS"; then
56 AC_PATH_PROG(PERL, perl)
57 if test -z "$PERL"; then
58 AC_MSG_ERROR([You need 'perl' to compile WebKit])
61 AC_PATH_PROG(BISON, bison)
62 if test -z "$BISON"; then
63 AC_MSG_ERROR([You need the 'bison' parser generator to compile WebKit])
66 AC_PATH_PROG(FLEX, flex)
67 if test -z "$FLEX"; then
68 AC_MSG_ERROR([You need the 'flex' lexer generator to compile WebKit])
71 AC_PATH_PROG(GPERF, gperf)
72 if test -z "$GPERF"; then
73 AC_MSG_ERROR([You need the 'gperf' hash function generator to compile WebKit])
77 if test -z "$MV"; then
78 AC_MSG_ERROR([You need 'mv' to compile WebKit])
82 # Check for glib-genmarshal and glib-mkenums
83 AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
84 AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums])
86 # Check whether a C++ was found (AC_PROG_CXX sets $CXX to "g++" even when it
89 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])],[],[AC_MSG_ERROR([No C++ compiler found])])
92 # C/C++ Language Features
102 AC_CHECK_HEADERS([pthread.h],
103 AC_DEFINE([HAVE_PTHREAD_H],[1],[Define if pthread exist]),
104 AC_MSG_ERROR([pthread support is required to build WebKit]))
107 AC_CHECK_HEADERS([jpeglib.h])
109 # check for pkg-config
110 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
111 if test "$PKG_CONFIG" = "no"; then
112 AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed in your PATH])
115 # check for icu-config
116 AC_PATH_PROG(icu_config, icu-config, no)
117 if test "$icu_config" = "no"; then
118 AC_MSG_ERROR([Cannot find icu-config. ICU library is needed.])
120 ICU_CFLAGS=`$icu_config --cflags`
121 ICU_LIBS=`$icu_config --ldflags`
122 AC_SUBST([ICU_CFLAGS])
125 # determine the GDK/GTK+ target
126 AC_MSG_CHECKING([the target for WebKit GTK+])
127 AC_ARG_WITH(webkit_target,
128 AC_HELP_STRING([--with-webkit-target=@<:@x11/win32/quartz/directfb@:>@],
129 [Select webkit target [default=x11]]),
130 [],[with_webkit_target="x11"])
132 case "$with_webkit_target" in
133 x11|win32|quartz|directfb) ;;
134 *) AC_MSG_ERROR([Invalid target: must be x11, quartz, win32, or directfb.]) ;;
137 AC_MSG_RESULT([$with_webkit_target])
139 # minimum base dependencies
140 GLIB_REQUIRED_VERSION=2.0
141 GOBJECT_REQUIRED_VERSION=2.0
142 GTHREAD_REQUIRED_VERSION=2.0
143 PANGO_REQUIRED_VERSION=1.0
144 CAIRO_REQUIRED_VERSION=1.2
145 FONTCONFIG_REQUIRED_VERSION=2.4
146 FREETYPE2_REQUIRED_VERSION=9.0
147 LIBCURL_REQUIRED_VERSION=7.15
148 LIBXML_REQUIRED_VERSION=2.6
151 GTK_REQUIRED_VERSION=2.0
152 LIBXSLT_REQUIRED_VERSION=1.1.7
153 SQLITE_REQUIRED_VERSION=3.0
154 GSTREAMER_REQUIRED_VERSION=0.10
155 GNOME_VFS_REQUIRED_VERSION=2.0
157 PKG_CHECK_MODULES([DEPENDENCIES],
158 [glib-2.0 >= $GLIB_REQUIRED_VERSION
159 gobject-2.0 >= $GOBJECT_REQUIRED_VERSION
160 gthread-2.0 >= $GTHREAD_REQUIRED_VERSION
161 gtk+-2.0 >= $GTK_REQUIRED_VERSION
162 pango >= $PANGO_REQUIRED_VERSION
163 libcurl >= $LIBCURL_REQUIRED_VERSION
164 cairo >= $CAIRO_REQUIRED_VERSION
166 fontconfig >= $FONTCONFIG_REQUIRED_VERSION
167 freetype2 >= $FREETYPE2_REQUIRED_VERSION
168 libxml-2.0 >= $LIBXML_REQUIRED_VERSION])
169 AC_SUBST([DEPENDENCIES_CFLAGS])
170 AC_SUBST([DEPENDENCIES_LIBS])
172 # check whether to build with debugging enabled
173 AC_MSG_CHECKING([whether to do a debug build])
175 AC_HELP_STRING([--enable-debug],
176 [turn on debugging [default=no]]),
177 [enable_debug="yes"],[enable_debug="no"])
178 AC_MSG_RESULT([$enable_debug])
180 # check whether to build with database support
181 AC_MSG_CHECKING([whether to enable HTML5 client-side storage support])
182 AC_ARG_ENABLE(database,
183 AC_HELP_STRING([--enable-database],
184 [enable HTML5 client-side storage support [default=yes]]),
185 [],[enable_database="yes"])
186 AC_MSG_RESULT([$enable_database])
188 # check whether to build with icon database support
189 AC_MSG_CHECKING([whether to enable icon database support])
190 AC_ARG_ENABLE(icon_database,
191 AC_HELP_STRING([--enable-icon-database],
192 [enable icon database [default=no]]),
193 [],[enable_icon_database="no"])
194 AC_MSG_RESULT([$enable_icon_database])
196 # check whether to enable HTML5 audio/video support
197 AC_MSG_CHECKING([whether to enable HTML5 video support])
199 AC_HELP_STRING([--enable-video],
200 [enable HTML5 video support [default=no]]),
201 [enable_video="yes"],[enable_video="no"])
202 AC_MSG_RESULT([$enable_video])
204 # check whether to enable XPath support
205 AC_MSG_CHECKING([whether to enable XPath support])
207 AC_HELP_STRING([--enable-xpath],
208 [enable support for XPath [default=yes]]),
209 [],[enable_xpath="yes"])
210 AC_MSG_RESULT([$enable_xpath])
212 # check whether to enable XSLT support
213 AC_MSG_CHECKING([whether to enable XSLT support])
215 AC_HELP_STRING([--enable-xslt],
216 [enable support for XSLT [default=yes]]),
217 [],[enable_xslt="yes"])
218 AC_MSG_RESULT([$enable_xslt])
220 # check whether to enable SVG support
221 AC_MSG_CHECKING([whether to enable SVG support])
223 AC_HELP_STRING([--enable-svg],
224 [enable support for SVG [default=no]]),
225 [],[enable_svg="no"])
226 AC_MSG_RESULT([$enable_svg])
228 # check whether to enable support for SVG animation
229 AC_MSG_CHECKING([whether to enable support for SVG animataion])
230 AC_ARG_ENABLE(svg_animation,
231 AC_HELP_STRING([--enable-svg-animation],
232 [enable support for SVG animation (experimental) [default=no]]),
233 [],[enable_svg_animation="no"])
234 AC_MSG_RESULT([$enable_svg_animation])
236 # check whether to enable support for SVG filters
237 AC_MSG_CHECKING([whether to enable support for SVG filters])
238 AC_ARG_ENABLE(svg_filters,
239 AC_HELP_STRING([--enable-svg-filters],
240 [enable support for SVG filters (experimental) [default=no]]),
241 [],[enable_svg_filters="no"])
242 AC_MSG_RESULT([$enable_svg_filters])
244 # check whether to enable support for SVG fonts
245 AC_MSG_CHECKING([whether to enable support for SVG fonts])
246 AC_ARG_ENABLE(svg_fonts,
247 AC_HELP_STRING([--enable-svg-fonts],
248 [enable support for SVG fonts (experimental) [default=no]]),
249 [],[enable_svg_fonts="no"])
250 AC_MSG_RESULT([$enable_svg_fonts])
252 # check whether to enable SVG As Image support
253 AC_MSG_CHECKING([whether to enable SVG as Image support])
254 AC_ARG_ENABLE(svg_as_image,
255 AC_HELP_STRING([--enable-svg-as-image],
256 [enable SVG as Image support (experimental) [default=no]]),
257 [],[enable_svg_as_image="no"])
258 AC_MSG_RESULT([$enable_svg_as_image])
260 # check whether to enable SVG USE element support
261 AC_MSG_CHECKING([whether to enable support for SVG use element])
262 AC_ARG_ENABLE(svg_use_element,
263 AC_HELP_STRING([--enable-svg-use-element],
264 [enable SVG use element support (experimental) [default=no]]),
265 [],[enable_svg_use_element="no"])
266 AC_MSG_RESULT([$enable_svg_use_element])
268 # check whether to enable code coverage
269 AC_MSG_CHECKING([whether to enable code coverage support])
270 AC_ARG_ENABLE(coverage,
271 AC_HELP_STRING([--enable-coverage],
272 [enable code coverage support [default=no]]),
273 [],[enable_coverage="no"])
274 AC_MSG_RESULT([$enable_coverage])
276 # Add '-g' flag to gcc if it's debug build
277 if test "$enable_debug" = "yes"; then
278 CXXFLAGS="$CXXFLAGS -g"
282 # check if sqlite 3 is available
283 if test "$enable_icon_database" = "yes" || test "$enable_database" = "yes"; then
284 PKG_CHECK_MODULES([SQLITE3], [sqlite3 >= $SQLITE_REQUIRED_VERSION])
285 AC_SUBST([SQLITE3_CFLAGS])
286 AC_SUBST([SQLITE3_LIBS])
289 # check if libxslt is available
290 if test "$enable_xslt" = "yes"; then
291 PKG_CHECK_MODULES([LIBXSLT],[libxslt >= $LIBXSLT_REQUIRED_VERSION])
292 AC_SUBST([LIBXSLT_CFLAGS])
293 AC_SUBST([LIBXSLT_LIBS])
296 # check if gstreamer is available
297 if test "$enable_video" = "yes"; then
298 PKG_CHECK_MODULES([GSTREAMER],
299 [gstreamer-0.10 >= $GSTREAMER_REQUIRED_VERSION
301 gstreamer-plugins-base-0.10,
302 gnome-vfs-2.0 >= $GNOME_VFS_REQUIRED_VERSION])
303 AC_SUBST([GSTREAMER_CFLAGS])
304 AC_SUBST([GSTREAMER_LIBS])
307 # check for code coverage support
308 if test "$enable_coverage" = "yes"; then
309 COVERAGE_CFLAGS="-MD"
310 COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
311 AC_SUBST([COVERAGE_CFLAGS])
312 AC_SUBST([COVERAGE_LDFLAGS])
315 # check for SVG features, enabling SVG if necessary
316 if test "$enable_svg" = "no" && (\
317 test "$enable_svg_animation" = "yes" || \
318 test "$enable_svg_filters" = "yes" || \
319 test "$enable_svg_fonts" = "yes" || \
320 test "$enable_svg_as_image" = "yes" || \
321 test "$enable_svg_use_element" = "yes"); then
323 AC_MSG_WARN([SVG feature(s) requested but SVG is disabled.. Enabling SVG support])
329 AM_CONDITIONAL([OS_WIN32],[test "$os_win32" = "yes"])
330 AM_CONDITIONAL([OS_UNIX],[test "$os_win32" = "no"])
331 AM_CONDITIONAL([OS_LINUX],[test "$os_linux" = "yes"])
332 AM_CONDITIONAL([OS_FREEBSD],[test "$os_freebsd" = "yes"])
334 # target conditionals
335 AM_CONDITIONAL([TARGET_X11], [test "$with_webkit_target" = "x11"])
336 AM_CONDITIONAL([TARGET_WIN32], [test "$with_webkit_target" = "win32"])
337 AM_CONDITIONAL([TARGET_QUARTZ], [test "$with_webkit_target" = "quartz"])
338 AM_CONDITIONAL([TARGET_DIRECTFB], [test "$with_webkit_target" = "directfb"])
340 # WebKit feature conditionals
341 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"])
342 AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"])
343 AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
344 AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"])
345 AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
346 AM_CONDITIONAL([ENABLE_VIDEO],[test "$enable_video" = "yes"])
347 AM_CONDITIONAL([ENABLE_SVG],[test "$enable_svg" = "yes"])
348 AM_CONDITIONAL([ENABLE_SVG_ANIMATION],[test "$enable_svg_animation" = "yes"])
349 AM_CONDITIONAL([ENABLE_SVG_FILTERS],[test "$enable_svg_filters" = "yes"])
350 AM_CONDITIONAL([ENABLE_SVG_FONTS],[test "$enable_svg_fonts" = "yes"])
351 AM_CONDITIONAL([ENABLE_SVG_AS_IMAGE],[test "$enable_svg_as_image" = "yes"])
352 AM_CONDITIONAL([ENABLE_SVG_USE],[test "$enable_svg_use_element" = "yes"])
353 AM_CONDITIONAL([ENABLE_COVERAGE],[test "$enable_coverage" = "yes"])
354 AM_CONDITIONAL([SVG_FLAGS],[test "$svg_flags" = "yes"])
358 WebKit/gtk/WebKitGtk.pc:WebKit/gtk/WebKitGtk.pc.in
365 WebKit was configured with the following options:
367 Target : $with_webkit_target
368 Enable debug : $enable_debug
369 Code coverage support : $enable_coverage
370 HTML5 client-side storage support : $enable_database
371 HTML5 video element support : $enable_video
372 Icon database support : $enable_icon_database
373 SVG support : $enable_svg
374 SVG animation support : $enable_svg_animation
375 SVG filters support : $enable_svg_filters
376 SVG fonts support : $enable_svg_fonts
377 SVG as image support : $enable_svg_as_image
378 SVG use element support : $enable_svg_use_element
379 XPATH support : $enable_xpath
380 XSLT support : $enable_xslt