Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
Patrick Venture | d752357 | 2018-11-26 09:01:54 -0800 | [diff] [blame] | 3 | AC_INIT([swampd], [0.1], [https://github.com/openbmc/phosphor-pid-control/issues]) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 4 | AC_LANG([C++]) |
| 5 | AC_CONFIG_HEADERS([config.h]) |
| 6 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz]) |
| 7 | AM_SILENT_RULES([yes]) |
| 8 | |
| 9 | # Checks for programs. |
| 10 | AC_PROG_CXX |
| 11 | AM_PROG_AR |
| 12 | AC_PROG_INSTALL |
| 13 | AC_PROG_MAKE_SET |
| 14 | |
| 15 | # Python |
| 16 | AM_PATH_PYTHON([2.7], [AC_SUBST([PYTHON], [echo "$PYTHON"])], |
| 17 | [AC_MSG_ERROR([Could not find python-2.7 installed...python-2.7 is required])]) |
| 18 | |
| 19 | # Checks for typedefs, structures, and compiler characteristics. |
Patrick Venture | 54c2e5e | 2018-09-10 13:06:38 -0700 | [diff] [blame] | 20 | AX_CXX_COMPILE_STDCXX_17([noext]) |
Patrick Venture | ab28cb3 | 2018-06-20 18:37:48 -0700 | [diff] [blame] | 21 | AX_APPEND_COMPILE_FLAGS([-fpic -Wall -Werror], [CXXFLAGS]) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 22 | |
| 23 | # Checks for libraries. |
Patrick Venture | e54c7ff | 2018-11-21 21:30:56 -0800 | [diff] [blame] | 24 | PKG_CHECK_MODULES( |
| 25 | [SYSTEMD], |
| 26 | [libsystemd >= 221], |
| 27 | [], |
| 28 | [AC_MSG_ERROR(["systemd required and not found"])] |
| 29 | ) |
Patrick Venture | f72ad44 | 2019-02-13 07:28:58 -0800 | [diff] [blame^] | 30 | PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus]) |
| 31 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging]) |
| 32 | PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces]) |
William A. Kennington III | 331143c | 2019-02-07 15:52:44 -0800 | [diff] [blame] | 33 | PKG_CHECK_MODULES( |
| 34 | [LIBIPMID], |
| 35 | [libipmid], |
| 36 | [], |
| 37 | [AC_MSG_ERROR([Could not find libipmid...openbmc/phosphor-host-ipmid package required])] |
Patrick Venture | e54c7ff | 2018-11-21 21:30:56 -0800 | [diff] [blame] | 38 | ) |
| 39 | AC_CHECK_HEADER( |
| 40 | experimental/filesystem, |
| 41 | [], |
| 42 | [AC_MSG_ERROR([Could not find experimental/filesystem...libstdc++fs development package required])] |
| 43 | ) |
Patrick Venture | 31eebcd | 2019-02-12 07:23:42 -0800 | [diff] [blame] | 44 | AC_CHECK_HEADER( |
| 45 | nlohmann/json.hpp, |
| 46 | [], |
| 47 | [AC_MSG_ERROR([Could not find nlohmann/json.hpp])] |
| 48 | ) |
Patrick Venture | 2e3ecb5 | 2018-06-22 08:18:19 -0700 | [diff] [blame] | 49 | AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 50 | |
| 51 | # Checks for library functions. |
| 52 | LT_INIT # Required for systemd linking |
| 53 | |
| 54 | # Check/set gtest specific functions. |
Patrick Venture | f77ecc7 | 2018-11-26 09:08:49 -0800 | [diff] [blame] | 55 | PKG_CHECK_MODULES( |
| 56 | [GTEST], |
| 57 | [gtest], |
| 58 | [], |
| 59 | [AC_MSG_NOTICE([gtest not found, tests will not build])] |
| 60 | ) |
| 61 | PKG_CHECK_MODULES( |
| 62 | [GMOCK], |
| 63 | [gmock], |
| 64 | [], |
| 65 | [AC_MSG_NOTICE([gmock not found, tests will not build])] |
| 66 | ) |
| 67 | PKG_CHECK_MODULES( |
| 68 | [GTEST_MAIN], |
| 69 | [gtest_main], |
| 70 | [], |
| 71 | [AC_MSG_NOTICE([gtest_main not found, tests will not build])] |
| 72 | ) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 73 | |
| 74 | AC_ARG_ENABLE([oe-sdk], |
Patrick Venture | f77ecc7 | 2018-11-26 09:08:49 -0800 | [diff] [blame] | 75 | AS_HELP_STRING( |
| 76 | [--enable-oe-sdk], |
| 77 | [Link testcases absolutely against OE SDK so they can be ran within it.] |
| 78 | ) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 79 | ) |
| 80 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
Patrick Venture | f77ecc7 | 2018-11-26 09:08:49 -0800 | [diff] [blame] | 81 | [Path to the OE SDK SYSROOT] |
| 82 | ) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 83 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 84 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 85 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 86 | ) |
| 87 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 88 | [ |
| 89 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 90 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 91 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 92 | ] |
| 93 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 94 | ) |
| 95 | |
| 96 | AS_IF([test "x$SENSOR_YAML_GEN" == "x"], [SENSOR_YAML_GEN="sensor-example.yaml"]) |
| 97 | SENSORGEN="$PYTHON ${srcdir}/scripts/sensor_gen.py -i $SENSOR_YAML_GEN" |
| 98 | AC_SUBST(SENSORGEN) |
| 99 | |
| 100 | AS_IF([test "x$PID_YAML_GEN" == "x"], [PID_YAML_GEN="pid-example.yaml"]) |
| 101 | PIDGEN="$PYTHON ${srcdir}/scripts/pid_gen.py -i $PID_YAML_GEN" |
| 102 | AC_SUBST(PIDGEN) |
| 103 | |
| 104 | AS_IF([test "x$ZONE_YAML_GEN" == "x"], [ZONE_YAML_GEN="zone-example.yaml"]) |
| 105 | ZONEGEN="$PYTHON ${srcdir}/scripts/zone_gen.py -i $ZONE_YAML_GEN" |
| 106 | AC_SUBST(ZONEGEN) |
| 107 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 108 | AC_ARG_ENABLE([configure-dbus], |
Patrick Venture | f77ecc7 | 2018-11-26 09:08:49 -0800 | [diff] [blame] | 109 | AS_HELP_STRING( |
| 110 | [--enable-configure-dbus], [Enable configuring pid from D-Bus.] |
| 111 | ) |
| 112 | ) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 113 | AM_CONDITIONAL(CONFIGURE_DBUS, [test "x$enable_configure_dbus" = "xyes"]) |
| 114 | AS_IF([test "x$enable_configure_dbus" = "xyes"], |
James Feist | ce15e02 | 2018-09-26 10:01:33 -0700 | [diff] [blame] | 115 | [AC_DEFINE(CONFIGURE_DBUS, [1], [Read configuration from D-Bus.])], |
| 116 | [AC_DEFINE(CONFIGURE_DBUS, [0], [Do not read configuration from D-Bus.])] |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 117 | ) |
| 118 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 119 | # Create configured output |
Patrick Venture | 7a841b6 | 2018-06-13 09:39:46 -0700 | [diff] [blame] | 120 | AC_CONFIG_FILES([Makefile test/Makefile]) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 121 | AC_OUTPUT |