33a9d34ff3
Parallel 'make install' seems to deadlock here (make 3.81). Work around it by disabling parallel make for the install step. We only disable parallel make for the install step, as the build step works with parallel make, and webkit is a huge package, so build time goes up significantly with make -j1. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# webkit
|
|
#
|
|
################################################################################
|
|
|
|
WEBKIT_VERSION = 1.11.5
|
|
WEBKIT_SITE = http://www.webkitgtk.org/releases
|
|
WEBKIT_SOURCE = webkitgtk-$(WEBKIT_VERSION).tar.xz
|
|
WEBKIT_INSTALL_STAGING = YES
|
|
WEBKIT_DEPENDENCIES = host-ruby host-flex host-bison host-gperf enchant harfbuzz \
|
|
icu jpeg libcurl libgail libsecret libsoup libxml2 libxslt libgtk2 sqlite webp
|
|
|
|
# webkit-disable-tests.patch changes configure.ac therefore autoreconf required
|
|
WEBKIT_AUTORECONF = YES
|
|
WEBKIT_AUTORECONF_OPT = -I $(@D)/Source/autotools
|
|
|
|
# parallel make install deadlocks with make 3.81
|
|
WEBKIT_INSTALL_STAGING_OPT = -j1 DESTDIR=$(STAGING_DIR) install
|
|
|
|
# Does not build and it's disabled by default
|
|
# in newer releases
|
|
define DISABLE_INDEXED_DATABASE
|
|
$(SED) '/ENABLE_INDEXED_DATABASE/s:1:0:' \
|
|
$(@D)/Source/WebCore/GNUmakefile.features.am
|
|
endef
|
|
|
|
WEBKIT_PRE_CONFIGURE_HOOKS += DISABLE_INDEXED_DATABASE
|
|
|
|
# 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 -Wno-sign-compare" \
|
|
CXXFLAGS="$(TARGET_CXXFLAGS) -Wno-cast-align -Wno-sign-compare" \
|
|
AR_FLAGS="cru"
|
|
|
|
WEBKIT_CONF_OPT += \
|
|
--with-gtk=2.0 \
|
|
--disable-geolocation \
|
|
--disable-webkit2 \
|
|
--disable-glibtest \
|
|
--disable-video \
|
|
--disable-gtk-doc-html \
|
|
--disable-tests
|
|
|
|
# Xorg Dependencies
|
|
WEBKIT_CONF_OPT += --with-target=x11
|
|
WEBKIT_DEPENDENCIES += xlib_libXt
|
|
|
|
$(eval $(autotools-package))
|