diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-05-01 22:40:36 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-05-20 16:11:14 +0200 |
commit | aa406bb94bcf65846e2ba2a38a7480ac418e7183 (patch) | |
tree | b67bc2839da79b4ccb7b1f7909a8747dd4882e94 | |
parent | f48d3ff58b0584b6e64fdc3ea453e088af40dfba (diff) | |
download | buildroot-aa406bb94bcf65846e2ba2a38a7480ac418e7183.tar.gz buildroot-aa406bb94bcf65846e2ba2a38a7480ac418e7183.zip |
lftp: switch from libidn to libidn2
libidn has been removed since 4.8.1 (August 2017):
https://github.com/lavv17/lftp/commit/731abec393f3deff490c77d1d55eb7219bc6b556
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/lftp/lftp.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/lftp/lftp.mk b/package/lftp/lftp.mk index e1ca0533ee..68f3dfce2c 100644 --- a/package/lftp/lftp.mk +++ b/package/lftp/lftp.mk @@ -41,11 +41,11 @@ else LFTP_CONF_OPTS += --without-openssl endif -ifeq ($(BR2_PACKAGE_LIBIDN),y) -LFTP_DEPENDENCIES += libidn -LFTP_CONF_OPTS += --with-libidn=$(STAGING_DIR)/usr +ifeq ($(BR2_PACKAGE_LIBIDN2),y) +LFTP_DEPENDENCIES += libidn2 +LFTP_CONF_OPTS += --with-libidn2=$(STAGING_DIR)/usr else -LFTP_CONF_OPTS += --without-libidn +LFTP_CONF_OPTS += --without-libidn2 endif # Remove /usr/share/lftp |