mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-05 12:27:53 +00:00
2361c83f69
========================== List of Changes ========================== 1) Fixes bugs and changes codes - r448, r451, r452, r453, r454, r455, r460, r461 - Fixed umask option which works correctly.( Issue 346 ) - Added new S3fsCurl class for lapping curl functions. - Deleted YIKES macro which is not used. - Used memcpy instead of copying each bytes while downloading. - Fixed a bug, s3fs did not use servicepath when renaming. - Fixed and changed "use_sse"/"use_rrs" options( Issue 352 ) - Fixed a memory leak in curl_slist_sort_insert() function. - Fixed a memory leak when multipart uploading with error. - Supported mknod function.( Issue 355 ) - Changed debugging macros for simple. 2) Changes codes for performance and adds "multireq_max" - r449 Changed the order for checking directory objects. Added "multireq_max" option is maximum number of parallel request for listing objects. 3) Performance tuning - r456, r457, r458, r459 - Changed for large object uploading/downloading by parallel requests. - Added "parallel_count"/"fd_page_size" option. - Not make temporary file when uploading large object by multipart uploading. - Changed about temporary file and local cache file. And added cache's status file for local cache file. - Use "Range" header for block downloading. git-svn-id: http://s3fs.googlecode.com/svn/trunk@462 df820570-a93a-0410-bd06-b72b767a4274
19 lines
381 B
Plaintext
19 lines
381 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.59)
|
|
AC_INIT(s3fs, 1.72)
|
|
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
AM_INIT_AUTOMAKE()
|
|
|
|
AC_PROG_CXX
|
|
|
|
CXXFLAGS="$CXXFLAGS -Wall -D_FILE_OFFSET_BITS=64"
|
|
|
|
PKG_CHECK_MODULES([DEPS], [fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6 libcrypto >= 0.9])
|
|
|
|
AC_CONFIG_FILES(Makefile src/Makefile test/Makefile doc/Makefile)
|
|
AC_OUTPUT
|
|
|