summaryrefslogtreecommitdiffstats
path: root/package/webkit/webkit.mk
blob: 326be146dc808741fc54a35f9d0a0701b64d494a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#############################################################
#
# webkit
#
#############################################################

WEBKIT_VERSION = 1.2.7
WEBKIT_SITE = http://www.webkitgtk.org
WEBKIT_INSTALL_STAGING = YES
WEBKIT_DEPENDENCIES = host-flex host-gperf icu libcurl libxml2 libxslt \
			libgtk2 sqlite enchant libsoup jpeg libgail

# 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"


ifeq ($(BR2_PACKAGE_XORG7),y)
	WEBKIT_CONF_OPT += --with-target=x11
	WEBKIT_DEPENDENCIES += xserver_xorg-server xlib_libXt
else
	WEBKIT_CONF_OPT += --with-target=directfb
	WEBKIT_DEPENDENCIES += directfb
endif

WEBKIT_CONF_OPT += --disable-video

$(eval $(autotools-package))