Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([phosphor-host-ipmid], [1.0], [https://github.com/openbmc/phosphor-host-ipmid/issues]) |
| 4 | AC_CONFIG_HEADERS([config.h]) |
William A. Kennington III | 5023aa9 | 2019-04-04 18:00:09 -0700 | [diff] [blame] | 5 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz]) |
Matthew Barth | 00b1e5b | 2016-09-09 12:15:46 -0500 | [diff] [blame] | 6 | AM_SILENT_RULES([yes]) |
Patrick Venture | 98c7bfc | 2018-10-29 18:43:35 -0700 | [diff] [blame] | 7 | AC_LANG([C++]) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 8 | |
William A. Kennington III | 5023aa9 | 2019-04-04 18:00:09 -0700 | [diff] [blame] | 9 | # Make sure the default CFLAGS of `-O2 -g` don't override CODE_COVERAGE_CFLAGS |
| 10 | # It is important that this comes before AC_PROG_C{C,XX}, as we are attempting |
| 11 | # to stop them from populating default CFLAGS and CXXFLAGS. |
| 12 | AS_IF([test "x$enable_code_coverage" != "xno"], [ |
| 13 | AS_IF([test "x${CXXFLAGS+set}" != "xset"], [ |
| 14 | AC_SUBST(CXXFLAGS, [""]) |
| 15 | ]) |
| 16 | AS_IF([test "x${CFLAGS+set}" != "xset"], [ |
| 17 | AC_SUBST(CFLAGS, [""]) |
| 18 | ]) |
| 19 | ]) |
| 20 | |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 21 | # Checks for programs. |
| 22 | AC_PROG_CXX |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 23 | AC_PROG_CC |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 24 | AM_PROG_AR |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 25 | AC_PROG_INSTALL |
| 26 | AC_PROG_MAKE_SET |
| 27 | |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 28 | # softoff dir specific ones |
| 29 | AC_ARG_ENABLE([softoff], |
| 30 | AS_HELP_STRING([--enable-softoff], [Builds soft power off]) |
| 31 | ) |
| 32 | AS_IF([test "x$enable_softoff" != "xno"], |
| 33 | [AC_PROG_MKDIR_P] |
| 34 | [AC_CHECK_PROG([DIRNAME], dirname, dirname)] |
| 35 | ) |
| 36 | |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 37 | # Make sure the pkgconfigdata is configured for automake |
| 38 | PKG_INSTALLDIR |
| 39 | |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 40 | # Checks for libraries. |
Patrick Venture | 15bc918 | 2018-12-03 12:22:50 -0800 | [diff] [blame] | 41 | AC_CHECK_LIB([pam], [pam_start], [], [AC_MSG_ERROR([libpam not found])]) |
Matthew Barth | 80f714b | 2016-11-09 15:04:48 -0600 | [diff] [blame] | 42 | AC_CHECK_LIB([mapper], [mapper_get_service], ,[AC_MSG_ERROR([Could not find libmapper...openbmc/phosphor-objmgr package required])]) |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 43 | PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221], [], [AC_MSG_ERROR(["systemd required and not found"])]) |
Richard Marian Thomaiyar | 4654d99 | 2018-04-19 05:38:37 +0530 | [diff] [blame] | 44 | PKG_CHECK_MODULES([CRYPTO], [libcrypto >= 1.0.2g], ,[AC_MSG_ERROR([can't find openssl libcrypto])]) |
Patrick Venture | 6719586 | 2019-02-13 08:24:00 -0800 | [diff] [blame] | 45 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging]) |
| 46 | PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces]) |
| 47 | PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus]) |
Patrick Venture | 97c22e1 | 2019-02-12 07:39:02 -0800 | [diff] [blame] | 48 | AC_CHECK_HEADER(nlohmann/json.hpp, [], [AC_MSG_ERROR([Could not find nlohmann/json.hpp])]) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 49 | |
William A. Kennington III | 047412c | 2018-12-10 15:26:19 -0800 | [diff] [blame] | 50 | AS_IF([test "x$enable_softoff" != "xno"], [ |
Patrick Venture | 6719586 | 2019-02-13 08:24:00 -0800 | [diff] [blame] | 51 | PKG_CHECK_MODULES([SDEVENTPLUS], [sdeventplus]) |
William A. Kennington III | 4f67cc3 | 2018-10-18 15:24:49 -0700 | [diff] [blame] | 52 | |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 53 | # Check for sdbus++ tool |
William A. Kennington III | 047412c | 2018-12-10 15:26:19 -0800 | [diff] [blame] | 54 | AC_PATH_PROG([SDBUSPLUSPLUS], [sdbus++]) |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 55 | AS_IF([test "x$SDBUSPLUSPLUS" == "x"], |
| 56 | AC_MSG_ERROR([Cannot find sdbus++])) |
William A. Kennington III | 047412c | 2018-12-10 15:26:19 -0800 | [diff] [blame] | 57 | ]) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 58 | |
| 59 | # Checks for typedefs, structures, and compiler characteristics. |
William A. Kennington III | 687a436 | 2018-10-18 15:22:43 -0700 | [diff] [blame] | 60 | AX_CXX_COMPILE_STDCXX([17], [noext], [mandatory]) |
Matthew Barth | 00b1e5b | 2016-09-09 12:15:46 -0500 | [diff] [blame] | 61 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CFLAGS]) |
| 62 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 63 | |
| 64 | # Checks for library functions. |
Patrick Williams | 686df74 | 2016-09-02 17:52:59 -0500 | [diff] [blame] | 65 | LT_INIT([dlopen disable-static shared]) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 66 | LT_LIB_DLLOAD |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 67 | |
Matthew Barth | 00b1e5b | 2016-09-09 12:15:46 -0500 | [diff] [blame] | 68 | # Check/set gtest specific functions. |
Peter Hanson | 4a58985 | 2017-06-07 17:40:45 -0700 | [diff] [blame] | 69 | PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])]) |
| 70 | PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])]) |
Matthew Barth | 00b1e5b | 2016-09-09 12:15:46 -0500 | [diff] [blame] | 71 | |
| 72 | AC_ARG_ENABLE([oe-sdk], |
| 73 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 74 | ) |
| 75 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 76 | [Path to the OE SDK SYSROOT]) |
| 77 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 78 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 79 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 80 | ) |
| 81 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 82 | [ |
| 83 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 84 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 85 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 86 | ] |
| 87 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 88 | ) |
| 89 | |
Emily Shaffer | c07e72c | 2018-06-18 10:37:31 -0700 | [diff] [blame] | 90 | # Add code coverage tool |
| 91 | AX_CODE_COVERAGE |
William A. Kennington III | 5023aa9 | 2019-04-04 18:00:09 -0700 | [diff] [blame] | 92 | AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [ |
| 93 | AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS]) |
| 94 | ]) |
| 95 | m4_ifdef([_AX_CODE_COVERAGE_RULES], |
| 96 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])], |
| 97 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])]) |
| 98 | AX_ADD_AM_MACRO_STATIC([]) |
| 99 | |
Emily Shaffer | c07e72c | 2018-06-18 10:37:31 -0700 | [diff] [blame] | 100 | |
Tom Joseph | 51cb8ee | 2017-02-21 16:22:33 +0530 | [diff] [blame] | 101 | AC_ARG_VAR(WHITELIST_CONF, [Paths to IPMI whitelisted commands conf files. (default = ${srcdir}/host-ipmid-whitelist.conf)]) |
| 102 | if test -z "$WHITELIST_CONF"; then |
| 103 | WHITELIST_CONF=${srcdir}/host-ipmid-whitelist.conf |
| 104 | fi |
| 105 | |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 106 | AS_IF([test "x$SENSOR_YAML_GEN" == "x"], [SENSOR_YAML_GEN="scripts/sensor-example.yaml"]) |
Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 107 | SENSORGEN="$PYTHON ${srcdir}/scripts/sensor_gen.py -i $SENSOR_YAML_GEN" |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 108 | AC_SUBST(SENSOR_YAML_GEN) |
Ratan Gupta | 28c2e73 | 2017-03-04 08:53:52 +0530 | [diff] [blame] | 109 | AC_SUBST(SENSORGEN) |
| 110 | |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 111 | AS_IF([test "x$INVSENSOR_YAML_GEN" == "x"], [INVSENSOR_YAML_GEN="scripts/inventory-sensor-example.yaml"]) |
Tom Joseph | e19540e | 2019-02-04 14:06:58 +0530 | [diff] [blame] | 112 | INVSENSORGEN="$PYTHON ${srcdir}/scripts/inventory-sensor.py -i $INVSENSOR_YAML_GEN" |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 113 | AC_SUBST(INVSENSOR_YAML_GEN) |
Tom Joseph | e19540e | 2019-02-04 14:06:58 +0530 | [diff] [blame] | 114 | AC_SUBST(INVSENSORGEN) |
| 115 | |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 116 | AS_IF([test "x$FRU_YAML_GEN" == "x"], [FRU_YAML_GEN="scripts/fru-read-example.yaml"]) |
Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 117 | FRUGEN="$PYTHON $srcdir/scripts/fru_gen.py -i $FRU_YAML_GEN" |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 118 | AC_SUBST(FRU_YAML_GEN) |
Marri Devender Rao | a62bacc | 2017-06-04 23:40:16 -0500 | [diff] [blame] | 119 | AC_SUBST(FRUGEN) |
| 120 | |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 121 | AS_IF([test "x$ENTITY_YAML_GEN" == "x"], [ENTITY_YAML_GEN="scripts/entity-example.yaml"]) |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 122 | ENTITYGEN="$PYTHON $srcdir/scripts/entity_gen.py -i $ENTITY_YAML_GEN" |
Vernon Mauery | 5f7ac71 | 2019-04-30 11:19:08 -0700 | [diff] [blame] | 123 | AC_SUBST(ENTITY_YAML_GEN) |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 124 | AC_SUBST(ENTITYGEN) |
| 125 | |
Tom Joseph | 6edc8a0 | 2017-06-30 18:52:56 +0530 | [diff] [blame] | 126 | AC_DEFINE(CALLOUT_FWD_ASSOCIATION, "callout", [The name of the callout's forward association.]) |
| 127 | AC_DEFINE(BOARD_SENSOR, "/xyz/openbmc_project/inventory/system/chassis/motherboard", [The inventory path to the motherboard fault sensor.]) |
| 128 | AC_DEFINE(SYSTEM_SENSOR, "/xyz/openbmc_project/inventory/system", [The inventory path to the system event sensor.]) |
| 129 | |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 130 | # Soft Power off related. |
| 131 | AS_IF([test "x$enable_softoff" != "xno"], |
| 132 | # Dbus service name |
| 133 | [AC_ARG_VAR(SOFTOFF_BUSNAME, [The Dbus busname to own])] |
| 134 | AS_IF([test "x$SOFTOFF_BUSNAME" == "x"], |
| 135 | [SOFTOFF_BUSNAME="xyz.openbmc_project.Ipmi.Internal.SoftPowerOff"]) |
| 136 | [AC_DEFINE_UNQUOTED([SOFTOFF_BUSNAME], ["$SOFTOFF_BUSNAME"], [The Dbus busname to own])] |
| 137 | |
| 138 | # Service dbus root |
| 139 | [AC_ARG_VAR(SOFTOFF_OBJPATH, [The SoftPowerOff Dbus root])] |
| 140 | AS_IF([test "x$SOFTOFF_OBJPATH" == "x"], |
Vishwanatha Subbanna | b891a57 | 2017-03-31 11:34:48 +0530 | [diff] [blame] | 141 | [SOFTOFF_OBJPATH="/xyz/openbmc_project/ipmi/internal/soft_power_off"]) |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 142 | [AC_DEFINE_UNQUOTED([SOFTOFF_OBJPATH], ["$SOFTOFF_OBJPATH"], [The SoftPowerOff Dbus root])] |
Vishwanatha Subbanna | d27e71e | 2017-02-01 18:02:38 +0530 | [diff] [blame] | 143 | |
| 144 | # Timeouts in SECONDS for SoftPowerOff protocol |
Andrew Geissler | 6fcdc21 | 2018-01-26 11:53:46 -0800 | [diff] [blame] | 145 | [AC_ARG_VAR(IPMI_SMS_ATN_ACK_TIMEOUT_SECS, \ |
| 146 | [Initial timeout for host to ack and query SMS_ATN from BMC])] |
| 147 | [AC_DEFINE_UNQUOTED([IPMI_SMS_ATN_ACK_TIMEOUT_SECS], [30], \ |
| 148 | [Timeout for host to ack and query SMS_ATN from BMC])] |
Vishwanatha Subbanna | 31272b8 | 2017-02-01 18:53:14 +0530 | [diff] [blame] | 149 | |
Andrew Geissler | 48ce072 | 2017-08-16 19:51:51 -0500 | [diff] [blame] | 150 | [AC_ARG_VAR(IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS, [Wait time for host to shutdown])] |
| 151 | [AC_DEFINE_UNQUOTED([IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS], [45*60], [Wait time for host to shutdown])] |
Andrew Geissler | a6e3a30 | 2017-05-31 19:34:00 -0500 | [diff] [blame] | 152 | |
| 153 | # Indicates an in-band power off or reboot request from the host |
| 154 | # This file is used to ensure the soft off service does not run for host |
| 155 | # initiated shutdown or reboot requests |
| 156 | [AC_ARG_VAR(HOST_INBAND_REQUEST_DIR, [Directory used to indicate the host has initiated a shutdown or reboot])] |
| 157 | AS_IF([test "x$HOST_INBAND_REQUEST_DIR" == "x"], |
| 158 | [HOST_INBAND_REQUEST_DIR="/run/openbmc/"]) |
| 159 | [AC_DEFINE_UNQUOTED([HOST_INBAND_REQUEST_DIR], ["$HOST_INBAND_REQUEST_DIR"], [Directory to store host initiated shutdown file])] |
| 160 | |
| 161 | [AC_ARG_VAR(HOST_INBAND_REQUEST_FILE, [File which indicates the host has initiated a shutdown or reboot])] |
| 162 | AS_IF([test "x$HOST_INBAND_REQUEST_FILE" == "x"], |
| 163 | [HOST_INBAND_REQUEST_FILE="host@%u-request"]) |
| 164 | [AC_DEFINE_UNQUOTED([HOST_INBAND_REQUEST_FILE], ["$HOST_INBAND_REQUEST_FILE"], [File to create if host has initiated shutdown or reboot])] |
Vishwanatha Subbanna | 506aa0f | 2017-01-24 14:58:25 +0530 | [diff] [blame] | 165 | ) |
| 166 | |
Andrew Geissler | 62817fa9 | 2017-03-20 14:20:49 -0500 | [diff] [blame] | 167 | # Control Host Interfaces |
| 168 | # Dbus service name |
| 169 | AC_ARG_VAR(CONTROL_HOST_BUSNAME, [The Control Host Dbus busname to own]) |
| 170 | AS_IF([test "x$CONTROL_HOST_BUSNAME" == "x"], |
| 171 | [CONTROL_HOST_BUSNAME="xyz.openbmc_project.Control.Host"]) |
| 172 | AC_DEFINE_UNQUOTED([CONTROL_HOST_BUSNAME], ["$CONTROL_HOST_BUSNAME"], [The Control Host Dbus busname to own]) |
| 173 | |
Vishwanatha Subbanna | 3eb117a | 2017-07-12 16:13:49 +0530 | [diff] [blame] | 174 | # Host object name in the D-Bus |
| 175 | AC_ARG_VAR(HOST_NAME, [The Host name in the object path]) |
| 176 | AS_IF([test "x$HOST_NAME" == "x"], |
| 177 | [HOST_NAME="host"]) |
| 178 | AC_DEFINE_UNQUOTED([HOST_NAME], ["$HOST_NAME"], [The Host name in the object path]) |
| 179 | |
| 180 | # Service dbus object manager |
| 181 | AC_ARG_VAR(CONTROL_HOST_OBJ_MGR, [The Control Host D-Bus Object Manager]) |
| 182 | AS_IF([test "x$CONTROL_HOST_OBJ_MGR" == "x"], |
| 183 | [CONTROL_HOST_OBJ_MGR="/xyz/openbmc_project/control"]) |
| 184 | AC_DEFINE_UNQUOTED([CONTROL_HOST_OBJ_MGR], ["$CONTROL_HOST_OBJ_MGR"], [The Control Host D-Bus Object Manager]) |
Andrew Geissler | 62817fa9 | 2017-03-20 14:20:49 -0500 | [diff] [blame] | 185 | |
Marri Devender Rao | 66c5fda | 2018-01-18 10:48:37 -0600 | [diff] [blame] | 186 | # Power reading sensor configuration file |
| 187 | AC_ARG_VAR(POWER_READING_SENSOR, [Power reading sensor configuration file]) |
| 188 | AS_IF([test "x$POWER_READING_SENSOR" == "x"],[POWER_READING_SENSOR="/usr/share/ipmi-providers/power_reading.json"]) |
| 189 | AC_DEFINE_UNQUOTED([POWER_READING_SENSOR], ["$POWER_READING_SENSOR"], [Power reading sensor configuration file]) |
| 190 | |
Patrick Venture | 15e95f2 | 2018-11-14 19:25:08 -0800 | [diff] [blame] | 191 | AC_ARG_VAR(HOST_IPMI_LIB_PATH, [The file path to search for libraries.]) |
Vernon Mauery | 41c79e6 | 2019-02-04 15:54:28 -0800 | [diff] [blame] | 192 | AS_IF([test "x$HOST_IPMI_LIB_PATH" == "x"], [HOST_IPMI_LIB_PATH="/usr/lib/ipmid-providers/"]) |
Patrick Venture | 15e95f2 | 2018-11-14 19:25:08 -0800 | [diff] [blame] | 193 | AC_DEFINE_UNQUOTED([HOST_IPMI_LIB_PATH], ["$HOST_IPMI_LIB_PATH"], [The file path to search for libraries.]) |
| 194 | |
Matthew Barth | 00b1e5b | 2016-09-09 12:15:46 -0500 | [diff] [blame] | 195 | # Create configured output |
William A. Kennington III | 194375f | 2018-12-14 02:14:33 -0800 | [diff] [blame] | 196 | AC_CONFIG_FILES([ |
| 197 | Makefile |
| 198 | include/Makefile |
| 199 | libipmid/Makefile |
| 200 | libipmid/libipmid.pc |
| 201 | libipmid-host/Makefile |
| 202 | libipmid-host/libipmid-host.pc |
| 203 | softoff/Makefile |
| 204 | test/Makefile |
| 205 | user_channel/Makefile |
| 206 | ]) |
Matthew Barth | 3cff7ed | 2016-07-27 14:50:51 -0500 | [diff] [blame] | 207 | AC_OUTPUT |