2010-11-13 23:59:23 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ(2.59)
|
2011-02-15 23:32:27 +00:00
|
|
|
AC_INIT(s3fs, 1.44)
|
2010-11-13 23:59:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AM_INIT_AUTOMAKE()
|
|
|
|
|
|
|
|
AC_PROG_CXX
|
|
|
|
|
2011-01-20 22:40:59 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -Wall -D_FILE_OFFSET_BITS=64"
|
|
|
|
|
2010-12-17 04:40:15 +00:00
|
|
|
PKG_CHECK_MODULES([DEPS], [fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6 libcrypto >= 0.9])
|
2010-11-13 23:59:23 +00:00
|
|
|
|
2011-02-11 20:57:44 +00:00
|
|
|
AC_CONFIG_FILES(Makefile src/Makefile test/Makefile doc/Makefile)
|
2010-11-13 23:59:23 +00:00
|
|
|
AC_OUTPUT
|
|
|
|
|