You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
704 B

  1. if PACKAGE_rsync
  2. config RSYNC_xattr
  3. bool
  4. prompt "Enable xattr support"
  5. default y if USE_FS_ACL_ATTR
  6. default n
  7. config RSYNC_acl
  8. bool
  9. prompt "Enable ACL support"
  10. default y if USE_FS_ACL_ATTR
  11. default n
  12. config RSYNC_zlib
  13. bool
  14. prompt "Enable system zlib"
  15. help
  16. Use the system's zlib library instead of rsync's internal copy. Enabling
  17. this may create compatibility errors when using compression with older
  18. clients, or those using the current default of the bundled zlib.
  19. rsync's upstream default is to use their bundled zlib. OpenWrt uses the
  20. system zlib for space reasons. The system zlib will eventually become
  21. default for upstream as well.
  22. default y
  23. endif