lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (704B)


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