mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# dillo
|
|
#
|
|
################################################################################
|
|
|
|
DILLO_VERSION = 3.0.5
|
|
DILLO_SOURCE = dillo-$(DILLO_VERSION).tar.bz2
|
|
DILLO_SITE = http://www.dillo.org/download
|
|
DILLO_LICENSE = GPL-3.0+
|
|
DILLO_LICENSE_FILES = COPYING
|
|
# configure.ac gets patched, so autoreconf is necessary
|
|
DILLO_AUTORECONF = YES
|
|
DILLO_DEPENDENCIES = fltk zlib \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
DILLO_CONF_ENV = ac_cv_path_FLTK_CONFIG=$(STAGING_DIR)/usr/bin/fltk-config
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
DILLO_CONF_OPTS += --enable-ssl
|
|
DILLO_DEPENDENCIES += openssl
|
|
else
|
|
DILLO_CONF_OPTS += --disable-ssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
DILLO_CONF_OPTS += --enable-png
|
|
DILLO_DEPENDENCIES += libpng
|
|
DILLO_CONF_ENV += PNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
|
|
else
|
|
DILLO_CONF_OPTS += --disable-png
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
DILLO_CONF_OPTS += --enable-jpeg
|
|
DILLO_DEPENDENCIES += jpeg
|
|
else
|
|
DILLO_CONF_OPTS += --disable-jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
DILLO_CONF_OPTS += --enable-threaded-dns
|
|
else
|
|
DILLO_CONF_OPTS += --disable-threaded-dns
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|