Browse Source

rsync: Add IPv6 functionality

Signed-off-by: Simon Tretter <simon@mediaarchitectu.re>
lilik-openwrt-22.03
Simon Tretter 6 years ago
committed by Yousong Zhou
parent
commit
d0cc437f94
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      net/rsync/Makefile

+ 7
- 1
net/rsync/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=rsync
PKG_VERSION:=3.1.3
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://download.samba.org/pub/rsync/src
@ -60,6 +60,12 @@ else
CONFIGURE_ARGS+= --with-included-zlib=yes
endif
ifeq ($(CONFIG_IPV6),y)
TARGET_CFLAGS+= -DINET6
else
CONFIGURE_ARGS+= --disable-ipv6
endif
define Package/rsyncd
SECTION:=net
CATEGORY:=Network


Loading…
Cancel
Save