2011-05-23 17:18:52 +10:00
|
|
|
AC_INIT([libgim], [0.1.0], [danny@nerdcruft.net])
|
2012-04-27 17:54:26 +10:00
|
|
|
## Explicitly set an empty CXXFLAGS if not present to prevent AC_PROG_CXX from
|
|
|
|
## generating a default -O2. This allows us to manually select -O0 when
|
|
|
|
## debugging is enabled.
|
|
|
|
: ${CXXFLAGS=""}
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
|
|
|
## Build environment discovery
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-02-27 15:11:51 +11:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2014-05-20 15:21:29 +10:00
|
|
|
AC_REQUIRE_AUX_FILE([tap-driver.sh])
|
2011-05-23 17:18:52 +10:00
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
AC_CANONICAL_HOST
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
AC_LANG([C++])
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-02-04 15:59:22 +11:00
|
|
|
NC_CXX
|
|
|
|
NC_PLATFORM
|
|
|
|
NC_OPTIMISATION
|
|
|
|
NC_WARNINGS
|
|
|
|
NC_DEBUGGING
|
|
|
|
|
|
|
|
LT_INIT
|
2015-01-10 20:06:34 +11:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
AM_INIT_AUTOMAKE([1.14 dist-bzip2 dist-xz foreign subdir-objects])
|
|
|
|
AM_SILENT_RULES([yes])
|
2012-05-26 17:58:36 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
AC_CONFIG_HEADERS([config.h])
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
|
|
|
|
###############################################################################
|
2011-06-21 23:36:51 +10:00
|
|
|
## Architecture features
|
2013-07-30 01:44:28 +10:00
|
|
|
|
2011-06-21 23:36:51 +10:00
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
2011-07-04 16:17:50 +10:00
|
|
|
## Useful headers or platform features
|
2013-07-30 01:44:28 +10:00
|
|
|
|
2011-07-04 16:17:50 +10:00
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_SSIZE_T
|
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
|
|
|
## Platform features
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2015-03-24 02:43:21 +11:00
|
|
|
AC_DEFINE([_XOPEN_SOURCE], [700], [use POSIX 2008])
|
|
|
|
|
2011-07-04 16:17:12 +10:00
|
|
|
AC_FUNC_MMAP
|
2011-06-25 12:40:57 +10:00
|
|
|
|
2013-02-26 17:50:56 +11:00
|
|
|
AC_CHECK_FUNC([strndup], [
|
2013-08-05 16:45:25 +10:00
|
|
|
AC_DEFINE([HAVE_STRNDUP], [], [strndup appears to be present])
|
2013-02-26 17:50:56 +11:00
|
|
|
])
|
|
|
|
|
2011-07-04 16:17:12 +10:00
|
|
|
AC_CHECK_HEADER([execinfo.h], [break])
|
2011-06-25 12:40:57 +10:00
|
|
|
AM_CONDITIONAL([HAVE_EXECINFO], [test x$ac_cv_header_execinfo_h = "xyes"])
|
|
|
|
|
2011-11-04 17:28:04 +11:00
|
|
|
AC_SEARCH_LIBS([clock_gettime], [rt])
|
2013-07-30 01:44:28 +10:00
|
|
|
AS_IF([test "x$ac_cv_search_clock_gettime" == "x-*"], [
|
2014-05-09 12:58:57 +10:00
|
|
|
AX_APPEND_LINK_FLAGS([$ac_cv_search_clock_gettime], [], [-Werror])
|
2013-07-30 01:44:28 +10:00
|
|
|
])
|
2011-07-04 16:17:12 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
2011-06-30 21:45:02 +10:00
|
|
|
## Debug features
|
2013-07-30 01:44:28 +10:00
|
|
|
|
|
|
|
###############################################################################
|
2011-05-23 17:18:52 +10:00
|
|
|
## Documentation
|
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
2011-05-23 17:18:52 +10:00
|
|
|
## Required packages
|
2011-06-30 20:33:55 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
CHECK_RAGEL([ip.cpp])
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-07-30 16:17:47 +10:00
|
|
|
AX_BOOST_BASE([1.53], [], [AC_MSG_ERROR([Boost version >= 1.53 required])])
|
2011-07-05 21:34:44 +10:00
|
|
|
|
2011-09-25 14:25:24 +10:00
|
|
|
# boost-system isn't a hard requirement, it's only really used to fulfill
|
|
|
|
# some other dependency I've since forgotten about...
|
|
|
|
AX_BOOST_SYSTEM
|
|
|
|
|
2014-12-05 13:18:16 +11:00
|
|
|
AX_BOOST_THREAD
|
|
|
|
AS_IF([test "x$ax_cv_boost_thread" != "xyes"], [
|
|
|
|
AC_MSG_ERROR("boost-thread is a hard requirement")
|
|
|
|
])
|
2011-07-05 21:34:44 +10:00
|
|
|
|
2014-12-05 13:18:16 +11:00
|
|
|
AX_BOOST_FILESYSTEM
|
2013-07-30 16:26:11 +10:00
|
|
|
AS_IF([test "x$ax_cv_boost_filesystem" != "xyes"], [
|
2011-06-30 20:34:24 +10:00
|
|
|
AC_MSG_ERROR("boost-filesystem is a hard requirement")
|
2013-07-30 01:44:28 +10:00
|
|
|
])
|
2011-06-30 20:34:24 +10:00
|
|
|
|
2014-12-05 13:18:16 +11:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
2011-05-23 17:18:52 +10:00
|
|
|
## Optional packages
|
2013-07-30 01:44:28 +10:00
|
|
|
|
2013-07-13 15:28:29 +10:00
|
|
|
PKG_CHECK_MODULES([ZLIB], [zlib >= 1.2.0])
|
2013-07-30 01:44:28 +10:00
|
|
|
AC_SUBST(ZLIB_CFLAGS)
|
|
|
|
AC_SUBST(ZLIB_LIBS)
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-07-30 01:44:28 +10:00
|
|
|
###############################################################################
|
|
|
|
## Performance and build optimisations
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
## Output
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2013-07-30 16:17:47 +10:00
|
|
|
# inclusion of config.h has to go after compilation tests otherwise we risk
|
|
|
|
# failure on a clean build
|
|
|
|
AX_APPEND_FLAG([-include config.h])
|
|
|
|
|
2012-04-24 12:59:13 +10:00
|
|
|
AC_CONFIG_FILES([
|
2011-05-23 17:18:52 +10:00
|
|
|
Doxyfile
|
|
|
|
Makefile
|
|
|
|
test/Makefile
|
|
|
|
])
|
2015-02-13 18:02:09 +11:00
|
|
|
AC_CONFIG_FILES([test/json.test], [chmod a+x test/json.test])
|
2015-03-18 16:08:18 +11:00
|
|
|
AC_CONFIG_FILES([test/json-schema.test], [chmod a+x test/json-schema.test])
|
2015-02-13 18:02:09 +11:00
|
|
|
AC_CONFIG_FILES([test/static.test], [chmod a+x test/static.test])
|
2012-04-24 12:59:13 +10:00
|
|
|
AC_OUTPUT
|