packages/net/rsync/Config.in
Daniel Dickinson eb374e2d4d net/rsync: Make using ACL/XATTR the default if it's core default
Core has an option to enable ACL/XATTR by default;
if that is set default rsync to use it.

Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>
2017-01-10 16:26:10 -05:00

27 lines
704 B
Text

if PACKAGE_rsync
config RSYNC_xattr
bool
prompt "Enable xattr support"
default y if USE_FS_ACL_ATTR
default n
config RSYNC_acl
bool
prompt "Enable ACL support"
default y if USE_FS_ACL_ATTR
default n
config RSYNC_zlib
bool
prompt "Enable system zlib"
help
Use the system's zlib library instead of rsync's internal copy. Enabling
this may create compatibility errors when using compression with older
clients, or those using the current default of the bundled zlib.
rsync's upstream default is to use their bundled zlib. OpenWrt uses the
system zlib for space reasons. The system zlib will eventually become
default for upstream as well.
default y
endif