rsync: Add IPv6 functionality
Signed-off-by: Simon Tretter <simon@mediaarchitectu.re>
This commit is contained in:
parent
b4a3ac3d70
commit
d0cc437f94
1 changed files with 7 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=rsync
|
PKG_NAME:=rsync
|
||||||
PKG_VERSION:=3.1.3
|
PKG_VERSION:=3.1.3
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
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
|
||||||
|
@ -60,6 +60,12 @@ else
|
||||||
CONFIGURE_ARGS+= --with-included-zlib=yes
|
CONFIGURE_ARGS+= --with-included-zlib=yes
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_IPV6),y)
|
||||||
|
TARGET_CFLAGS+= -DINET6
|
||||||
|
else
|
||||||
|
CONFIGURE_ARGS+= --disable-ipv6
|
||||||
|
endif
|
||||||
|
|
||||||
define Package/rsyncd
|
define Package/rsyncd
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
|
|
Loading…
Reference in a new issue