2014-05-29 22:04:35 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# dillo
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
DILLO_VERSION = 3.0.4
|
|
|
|
DILLO_SOURCE = dillo-$(DILLO_VERSION).tar.bz2
|
|
|
|
DILLO_SITE = http://www.dillo.org/download
|
|
|
|
DILLO_LICENSE = GPLv3+
|
|
|
|
DILLO_LICENSE_FILES = COPYING
|
|
|
|
# dillo-0001-configure.ac-change-fltk-config-test-to-be-more-cros.patch
|
|
|
|
# touches configure.ac
|
|
|
|
DILLO_AUTORECONF = YES
|
|
|
|
|
|
|
|
DILLO_DEPENDENCIES = fltk
|
|
|
|
|
|
|
|
DILLO_CONF_ENV = ac_cv_path_FLTK_CONFIG=$(STAGING_DIR)/usr/bin/fltk-config
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --enable-ssl
|
2014-05-29 22:04:35 +02:00
|
|
|
DILLO_DEPENDENCIES += openssl
|
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --disable-ssl
|
2014-05-29 22:04:35 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --enable-png
|
2014-05-29 22:04:35 +02:00
|
|
|
DILLO_DEPENDENCIES += libpng
|
|
|
|
DILLO_CONF_ENV += PNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
|
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --disable-png
|
2014-05-29 22:04:35 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --enable-jpeg
|
2014-05-29 22:04:35 +02:00
|
|
|
DILLO_DEPENDENCIES += libjpeg
|
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --disable-jpeg
|
2014-05-29 22:04:35 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --enable-threaded-dns
|
2014-05-29 22:04:35 +02:00
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
DILLO_CONF_OPTS += --disable-threaded-dns
|
2014-05-29 22:04:35 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|