s3fs-fuse/configure.ac

19 lines
381 B
Plaintext
Raw Normal View History

dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
Summary of Changes(1.67 -> 1.68) ========================== List of Changes ========================== 1) Fixes a bug(Issue 320) - r408, r411, r412 Fixes (Issue 320) "Spurious I/O errors" (http://code.google.com/p/s3fs/issues/detail?id=320) When the s3fs gets error in upload loop, it try to re-upload without seeking the fd. This is a bug for this issue. Please see detail in r408, r411 and r412. 2) Fixes a bug(Issue 293) - r409 Fixes (Issue 293) "Command line argument bucket: causes segv" (http://code.google.com/p/s3fs/issues/detail?id=293) If it specifies the bucket name which is terminated ":", the s3fs crushes. Please see detail in r409. 3) Supports a option(Issue 265) - r410 Supports (Issue 265) "Unable to mount to a non empty directory" (http://code.google.com/p/s3fs/issues/detail?id=265) Supported "nonempty" fuse/mount option. Please see detail in r410. 4) Supports other S3 clients(Issue 27) - r413, r.414 Supports (Issue 27) "Compatability with other S3FS clients" *** "_$folder$" dir object Supports the directory object which made by s3fox. Its name has "_$folder$" suffixes. On s3fs, that directory object is listed normal directory name without "_$folder$". Please be careful when you change object attributes(rename, chmod, chown, touch), because the s3fs remakes the directory object without "_$folder$" sufixes. This means the object is re-made by the s3fs. *** no dir object Supports the directory which is no objects. If there is a object which has "/" charactor(ex. "<bucket>/dir/file"), the directory("dir") object is no object. Example, you can upload the object which name is "s3://bucket/dir/file" by the s3cmd(or other S3 clients like s3cmd). Then on thie case, the "dir" is not object in bucket. This s3fs version understands this case. Please be careful when you change object attributes(rename, chmod, chown, touch), because the s3fs makes new directory object. Please see detail in r413 and r414. git-svn-id: http://s3fs.googlecode.com/svn/trunk@415 df820570-a93a-0410-bd06-b72b767a4274
2013-05-01 03:45:42 +00:00
AC_INIT(s3fs, 1.68)
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