AC_INIT([bindfs],[1.14.7],[martin.partel@gmail.com]) AM_INIT_AUTOMAKE([foreign serial-tests]) AC_CONFIG_HEADERS([config.h]) AC_PROG_CC AC_LANG(C) AC_PROG_LIBTOOL # --enable and --with options AC_ARG_ENABLE([debug-output], [AS_HELP_STRING([--enable-debug-output], [enable debug output])]) AC_ARG_WITH([core-foundation], AS_HELP_STRING([--with-core-foundation], [link against Core Foundation (OS X only) @<:@default=no@:>@])) if test x"$enable_debug_output" == "xyes" ; then AC_DEFINE([BINDFS_DEBUG], [1], [Define to 1 to enable debugging messages]) fi if test x"$with_core_foundation" == "xyes" ; then AC_MSG_NOTICE([Linking with Core Foundation]) LDFLAGS="${LDFLAGS} -framework CoreFoundation" fi AM_CONDITIONAL(BUILD_OS_IS_DARWIN, [test x"$build_os" = darwin]) my_CPPFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=26" my_CFLAGS="-Wall -fno-common" my_LDFLAGS="-pthread" AC_SUBST([my_CPPFLAGS]) AC_SUBST([my_CFLAGS]) AC_SUBST([my_LDFLAGS]) # Checks for platform-specific stuff AC_CHECK_FUNCS([lutimes utimensat]) AC_CHECK_FUNCS([setxattr getxattr listxattr removexattr]) AC_CHECK_FUNCS([lsetxattr lgetxattr llistxattr lremovexattr]) AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ #define BSD_SOURCE_ #include #include #include void foo() { struct stat st; st.st_mtim.tv_nsec = 123; } ]])], [AC_DEFINE( [HAVE_STAT_NANOSEC], [1], [Define if struct stat has st_mtim.tv_nsec etc.] )] ) # Check for fuse PKG_CHECK_MODULES([fuse], [fuse >= 2.9.0], [AC_DEFINE([HAVE_FUSE_29], [1], [Have FUSE >= 2.9.0])], [PKG_CHECK_MODULES([fuse], [fuse >= 2.8.0])]) AC_CONFIG_FILES([Makefile \ src/Makefile \ tests/Makefile \ tests/internals/Makefile]) AC_OUTPUT