blob: 978df6a3b329ec8c7aede214e5745c242fc4bf11 [file] [log] [blame]
Patrick Venturee6206562018-03-08 15:36:53 -08001# Initialization
2AC_PREREQ([2.69])
Patrick Ventured7523572018-11-26 09:01:54 -08003AC_INIT([swampd], [0.1], [https://github.com/openbmc/phosphor-pid-control/issues])
Patrick Venturee6206562018-03-08 15:36:53 -08004AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
6AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
7AM_SILENT_RULES([yes])
8
9# Checks for programs.
10AC_PROG_CXX
11AM_PROG_AR
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14
Patrick Venturee6206562018-03-08 15:36:53 -080015# Checks for typedefs, structures, and compiler characteristics.
Patrick Venture54c2e5e2018-09-10 13:06:38 -070016AX_CXX_COMPILE_STDCXX_17([noext])
Patrick Ventureab28cb32018-06-20 18:37:48 -070017AX_APPEND_COMPILE_FLAGS([-fpic -Wall -Werror], [CXXFLAGS])
Patrick Venturee6206562018-03-08 15:36:53 -080018
19# Checks for libraries.
Patrick Venturee54c7ff2018-11-21 21:30:56 -080020PKG_CHECK_MODULES(
21 [SYSTEMD],
22 [libsystemd >= 221],
23 [],
24 [AC_MSG_ERROR(["systemd required and not found"])]
25)
Patrick Venturef72ad442019-02-13 07:28:58 -080026PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus])
27PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
28PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces])
William A. Kennington III331143c2019-02-07 15:52:44 -080029PKG_CHECK_MODULES(
30 [LIBIPMID],
31 [libipmid],
32 [],
33 [AC_MSG_ERROR([Could not find libipmid...openbmc/phosphor-host-ipmid package required])]
Patrick Venturee54c7ff2018-11-21 21:30:56 -080034)
35AC_CHECK_HEADER(
36 experimental/filesystem,
37 [],
38 [AC_MSG_ERROR([Could not find experimental/filesystem...libstdc++fs development package required])]
39)
Patrick Venture31eebcd2019-02-12 07:23:42 -080040AC_CHECK_HEADER(
41 nlohmann/json.hpp,
42 [],
43 [AC_MSG_ERROR([Could not find nlohmann/json.hpp])]
44)
Patrick Venture2e3ecb52018-06-22 08:18:19 -070045AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
Patrick Venturee6206562018-03-08 15:36:53 -080046
47# Checks for library functions.
48LT_INIT # Required for systemd linking
49
50# Check/set gtest specific functions.
Patrick Venturef77ecc72018-11-26 09:08:49 -080051PKG_CHECK_MODULES(
52 [GTEST],
53 [gtest],
54 [],
55 [AC_MSG_NOTICE([gtest not found, tests will not build])]
56)
57PKG_CHECK_MODULES(
58 [GMOCK],
59 [gmock],
60 [],
61 [AC_MSG_NOTICE([gmock not found, tests will not build])]
62)
63PKG_CHECK_MODULES(
64 [GTEST_MAIN],
65 [gtest_main],
66 [],
67 [AC_MSG_NOTICE([gtest_main not found, tests will not build])]
68)
Patrick Venturee6206562018-03-08 15:36:53 -080069
70AC_ARG_ENABLE([oe-sdk],
Patrick Venturef77ecc72018-11-26 09:08:49 -080071 AS_HELP_STRING(
72 [--enable-oe-sdk],
73 [Link testcases absolutely against OE SDK so they can be ran within it.]
74 )
Patrick Venturee6206562018-03-08 15:36:53 -080075)
76AC_ARG_VAR(OECORE_TARGET_SYSROOT,
Patrick Venturef77ecc72018-11-26 09:08:49 -080077 [Path to the OE SDK SYSROOT]
78)
Patrick Venturee6206562018-03-08 15:36:53 -080079AS_IF([test "x$enable_oe_sdk" == "xyes"],
80 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
81 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
82 )
83 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
84 [
85 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
86 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
87 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
88 ]
89 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
90)
91
James Feist7136a5a2018-07-19 09:52:05 -070092AC_ARG_ENABLE([configure-dbus],
Patrick Venturef77ecc72018-11-26 09:08:49 -080093 AS_HELP_STRING(
94 [--enable-configure-dbus], [Enable configuring pid from D-Bus.]
95 )
96)
James Feist7136a5a2018-07-19 09:52:05 -070097AM_CONDITIONAL(CONFIGURE_DBUS, [test "x$enable_configure_dbus" = "xyes"])
98AS_IF([test "x$enable_configure_dbus" = "xyes"],
James Feistce15e022018-09-26 10:01:33 -070099 [AC_DEFINE(CONFIGURE_DBUS, [1], [Read configuration from D-Bus.])],
100 [AC_DEFINE(CONFIGURE_DBUS, [0], [Do not read configuration from D-Bus.])]
James Feist7136a5a2018-07-19 09:52:05 -0700101)
102
Patrick Venturee6206562018-03-08 15:36:53 -0800103# Create configured output
Patrick Venture7a841b62018-06-13 09:39:46 -0700104AC_CONFIG_FILES([Makefile test/Makefile])
Patrick Venturee6206562018-03-08 15:36:53 -0800105AC_OUTPUT