# Input file for autoconf to generate the configure script. # See https://www.gnu.org/software/autoconf/manual/autoconf.html for help on # the macros used in this file. AC_INIT([streamly], [0.11.0], [streamly@composewell.com], [streamly], [https://streamly.composewell.com]) # To suppress "WARNING: unrecognized options: --with-compiler" AC_ARG_WITH([compiler], [GHC]) # XXX Do this only for linux AC_CHECK_DECLS([IN_MASK_CREATE],[],[],[#include ]) AC_CHECK_DECLS([IN_EXCL_UNLINK],[],[],[#include ]) # XXX Do this only for macOS AC_CHECK_DECLS([kFSEventStreamCreateFlagFileEvents],[],[],[#include ]) AC_CHECK_DECLS([kFSEventStreamCreateFlagFullHistory],[],[],[#include ]) AC_CHECK_DECLS([kFSEventStreamEventFlagItemCloned],[],[],[#include ]) AC_CHECK_DECLS([kFSEventStreamEventFlagItemIsHardlink],[],[],[#include ]) # Output AC_CONFIG_HEADERS([src/config.h]) AC_OUTPUT