2008-03-06 19:28:48 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# webkit
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2011-03-10 14:44:34 +01:00
|
|
|
WEBKIT_VERSION = 1.2.7
|
2013-05-06 08:19:39 +02:00
|
|
|
WEBKIT_SITE = http://www.webkitgtk.org/releases
|
2008-03-06 19:28:48 +01:00
|
|
|
WEBKIT_INSTALL_STAGING = YES
|
2012-12-15 08:29:42 +01:00
|
|
|
WEBKIT_DEPENDENCIES = host-flex host-bison host-gperf icu libcurl libxml2 \
|
|
|
|
libxslt libgtk2 sqlite enchant libsoup jpeg libgail
|
2012-12-15 08:29:41 +01:00
|
|
|
|
|
|
|
# Give explicit path to icu-config, and silence gazillions of warnings
|
|
|
|
# with recent gcc versions.
|
|
|
|
WEBKIT_CONF_ENV = ac_cv_path_icu_config=$(STAGING_DIR)/usr/bin/icu-config \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -Wno-cast-align" \
|
|
|
|
CXXFLAGS="$(TARGET_CXXFLAGS) -Wno-cast-align"
|
|
|
|
|
2010-05-25 23:25:37 +02:00
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
|
|
WEBKIT_CONF_OPT += --with-target=x11
|
2013-01-06 12:29:40 +01:00
|
|
|
WEBKIT_DEPENDENCIES += xlib_libXt
|
2011-03-27 22:09:07 +02:00
|
|
|
else
|
2010-05-25 23:25:37 +02:00
|
|
|
WEBKIT_CONF_OPT += --with-target=directfb
|
|
|
|
WEBKIT_DEPENDENCIES += directfb
|
2009-06-29 12:54:06 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
WEBKIT_CONF_OPT += --disable-video
|
2008-03-06 19:28:48 +01:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|