Bump buildroot to 2019.02
This commit is contained in:
@@ -4,18 +4,13 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WGET_VERSION = 1.19.5
|
||||
WGET_VERSION = 1.20.1
|
||||
WGET_SOURCE = wget-$(WGET_VERSION).tar.lz
|
||||
WGET_SITE = $(BR2_GNU_MIRROR)/wget
|
||||
WGET_DEPENDENCIES = host-pkgconf
|
||||
WGET_LICENSE = GPL-3.0+
|
||||
WGET_LICENSE_FILES = COPYING
|
||||
|
||||
# Prefer full-blown wget over busybox
|
||||
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
||||
WGET_DEPENDENCIES += busybox
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
WGET_CONF_OPTS += --with-ssl=gnutls
|
||||
WGET_DEPENDENCIES += gnutls
|
||||
@@ -26,6 +21,13 @@ else
|
||||
WGET_CONF_OPTS += --without-ssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIDN2),y)
|
||||
WGET_CONF_OPTS += --with-libidn
|
||||
WGET_DEPENDENCIES += libidn2
|
||||
else
|
||||
WGET_CONF_OPTS += --without-libidn
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
||||
WGET_DEPENDENCIES += util-linux
|
||||
endif
|
||||
@@ -37,4 +39,14 @@ else
|
||||
WGET_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PCRE2),y)
|
||||
WGET_CONF_OPTS += --disable-pcre --enable-pcre2
|
||||
WGET_DEPENDENCIES += pcre2
|
||||
else ifeq ($(BR2_PACKAGE_PCRE),y)
|
||||
WGET_CONF_OPTS += --enable-pcre --disable-pcre2
|
||||
WGET_DEPENDENCIES += pcre
|
||||
else
|
||||
WGET_CONF_OPTS += --disable-pcre --disable-pcre2
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user