mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-17 17:55:12 +00:00
7358b3512e
Rather than erroring out, it is treated like the CURLE_OPERATION_TIMEOUT in that it doesn't exit the timeout loop while the retry count is > 0. I also added a short duration sleep to not retry immediately. Resolves issue #132 git-svn-id: http://s3fs.googlecode.com/svn/trunk@277 df820570-a93a-0410-bd06-b72b767a4274
17 lines
315 B
Plaintext
17 lines
315 B
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.59)
|
|
AC_INIT(s3fs, 1.21)
|
|
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
AM_INIT_AUTOMAKE()
|
|
|
|
AC_PROG_CXX
|
|
|
|
PKG_CHECK_MODULES([DEPS], [fuse >= 2.7 libcurl >= 7.0 libxml-2.0 >= 2.6 libcrypto >= 0.9])
|
|
|
|
AC_CONFIG_FILES(Makefile src/Makefile test/Makefile)
|
|
AC_OUTPUT
|
|
|