mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
Merge pull request #14412 from mstorchak/rsync-iconv
rsync: enable iconv if NLS support is enabled globally
This commit is contained in:
+5
-4
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=rsync
|
PKG_NAME:=rsync
|
||||||
PKG_VERSION:=3.2.3
|
PKG_VERSION:=3.2.3
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://download.samba.org/pub/rsync/src
|
PKG_SOURCE_URL:=https://download.samba.org/pub/rsync/src
|
||||||
@@ -24,13 +24,14 @@ PKG_INSTALL:=1
|
|||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
include $(INCLUDE_DIR)/nls.mk
|
||||||
|
|
||||||
define Package/rsync
|
define Package/rsync
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
SUBMENU:=File Transfer
|
SUBMENU:=File Transfer
|
||||||
TITLE:=Fast remote file copy program (like rcp)
|
TITLE:=Fast remote file copy program (like rcp)
|
||||||
DEPENDS:=+libpopt +zlib +RSYNC_xattr:libattr +RSYNC_acl:libacl +RSYNC_zstd:libzstd
|
DEPENDS:=+libpopt +zlib +RSYNC_xattr:libattr +RSYNC_acl:libacl +RSYNC_zstd:libzstd $(ICONV_DEPENDS)
|
||||||
URL:=https://rsync.samba.org/
|
URL:=https://rsync.samba.org/
|
||||||
MENU:=1
|
MENU:=1
|
||||||
endef
|
endef
|
||||||
@@ -46,14 +47,14 @@ CONFIGURE_ARGS += \
|
|||||||
--without-included-zlib \
|
--without-included-zlib \
|
||||||
--disable-debug \
|
--disable-debug \
|
||||||
--disable-asm \
|
--disable-asm \
|
||||||
--disable-iconv \
|
|
||||||
--disable-iconv-open \
|
|
||||||
--disable-lz4 \
|
--disable-lz4 \
|
||||||
--disable-locale \
|
--disable-locale \
|
||||||
--disable-md2man \
|
--disable-md2man \
|
||||||
--disable-openssl \
|
--disable-openssl \
|
||||||
--disable-simd \
|
--disable-simd \
|
||||||
--disable-xxhash \
|
--disable-xxhash \
|
||||||
|
--$(if $(CONFIG_BUILD_NLS),en,dis)able-iconv \
|
||||||
|
--$(if $(CONFIG_BUILD_NLS),en,dis)able-iconv-open \
|
||||||
--$(if $(CONFIG_RSYNC_zstd),en,dis)able-zstd \
|
--$(if $(CONFIG_RSYNC_zstd),en,dis)able-zstd \
|
||||||
--$(if $(CONFIG_RSYNC_xattr),en,dis)able-xattr-support \
|
--$(if $(CONFIG_RSYNC_xattr),en,dis)able-xattr-support \
|
||||||
--$(if $(CONFIG_RSYNC_acl),en,dis)able-acl-support \
|
--$(if $(CONFIG_RSYNC_acl),en,dis)able-acl-support \
|
||||||
|
|||||||
Reference in New Issue
Block a user