rsync, by default, includes a patched zlib within its source tarball. The patch enables a better compression ratio for rsync streams. However, the client and server need the same featureset in their zlib in order to understand the compression stream, or the server will abort the transfer. Older versions have no understanding of the new compression standard used. This patch allows the builder to choose whether to use the bundled or system zlib. It defautls to using the system zlib, as is the default before this patch. Signed-off-by: Ian Leonard <antonlacon@gmail.com>
25 lines
642 B
Text
25 lines
642 B
Text
if PACKAGE_rsync
|
|
|
|
config RSYNC_xattr
|
|
bool
|
|
prompt "Enable xattr support"
|
|
default n
|
|
|
|
config RSYNC_acl
|
|
bool
|
|
prompt "Enable ACL support"
|
|
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
|