Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([phosphor-fan-presence], [1.0], |
| 4 | [https://github.com/openbmc/phosphor-fan-presence/issues]) |
| 5 | AC_LANG([C++]) |
| 6 | AC_CONFIG_HEADERS([config.h]) |
| 7 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz]) |
| 8 | AM_SILENT_RULES([yes]) |
| 9 | |
Lei YU | bd2e80a | 2018-09-19 11:17:09 +0800 | [diff] [blame] | 10 | # Use gcc-ar and gcc-ranlib for static libraries built with -flto |
| 11 | AC_SUBST([AR], [${ac_tool_prefix}gcc-ar]) |
| 12 | AC_SUBST([RANLIB], [${ac_tool_prefix}gcc-ranlib]) |
| 13 | |
Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 14 | # Checks for programs. |
| 15 | AC_PROG_CXX |
| 16 | AM_PROG_AR |
| 17 | AC_PROG_INSTALL |
| 18 | AC_PROG_MAKE_SET |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 19 | |
Matthew Barth | 681c98d | 2017-02-17 16:05:57 -0600 | [diff] [blame] | 20 | # Python |
Matthew Barth | f24d774 | 2020-03-17 16:12:15 -0500 | [diff] [blame] | 21 | AM_PATH_PYTHON([3], [AC_SUBST([PYTHON], [echo "$PYTHON"])], |
| 22 | [AC_MSG_ERROR([Minimum python version(3) not found])]) |
Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 23 | |
| 24 | # Checks for typedefs, structures, and compiler characteristics. |
Vernon Mauery | 48df959 | 2018-10-04 10:08:13 -0700 | [diff] [blame] | 25 | AX_CXX_COMPILE_STDCXX_17([noext]) |
Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 26 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 27 | |
| 28 | # Checks for libraries. |
Patrick Venture | 4b258ac | 2019-02-13 14:48:21 -0800 | [diff] [blame] | 29 | PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus]) |
| 30 | PKG_CHECK_MODULES([SDEVENTPLUS], [sdeventplus]) |
| 31 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging]) |
| 32 | PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221]) |
| 33 | PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces]) |
| 34 | PKG_CHECK_MODULES([LIBEVDEV], [libevdev]) |
Matthew Barth | f3e7047 | 2019-12-03 13:33:20 -0600 | [diff] [blame] | 35 | PKG_CHECK_MODULES([STDPLUS], [stdplus]) |
Matthew Barth | 1826c73 | 2020-08-28 08:40:59 -0500 | [diff] [blame] | 36 | PKG_CHECK_MODULES([FMT], [fmt]) |
Matthew Barth | 293477d | 2017-02-17 15:39:36 -0600 | [diff] [blame] | 37 | |
Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 38 | # Checks for library functions. |
| 39 | LT_INIT # Required for systemd linking |
| 40 | |
Matt Spinler | 59c29c7 | 2017-04-27 11:17:28 -0500 | [diff] [blame] | 41 | # Check/set gtest specific functions. |
| 42 | AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"]) |
| 43 | AC_SUBST(GTEST_CPPFLAGS) |
| 44 | AC_ARG_ENABLE([oe-sdk], |
| 45 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 46 | ) |
| 47 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 48 | [Path to the OE SDK SYSROOT]) |
| 49 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 50 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 51 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 52 | ) |
| 53 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 54 | [ |
| 55 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 56 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 57 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 58 | ] |
| 59 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 60 | ) |
| 61 | |
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 62 | AC_ARG_ENABLE([json], |
| 63 | AS_HELP_STRING([--enable-json], [Use json at runtime to configure fan packages.])) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 64 | AC_ARG_ENABLE([presence], |
| 65 | AS_HELP_STRING([--disable-presence], [Disable fan presence package.])) |
| 66 | AC_ARG_ENABLE([control], |
| 67 | AS_HELP_STRING([--disable-control], [Disable fan control package.])) |
Matthew Barth | 8e1b382 | 2020-11-12 11:57:23 -0600 | [diff] [blame] | 68 | AC_ARG_ENABLE([json-control], |
| 69 | AS_HELP_STRING([--disable-json-control], [Disable the use of JSON to configure fan control in favor of YAML.])) |
Brandon Wyman | ca60e10 | 2017-03-29 17:06:02 -0500 | [diff] [blame] | 70 | AC_ARG_ENABLE([cooling-type], |
| 71 | AS_HELP_STRING([--disable-cooling-type], [Disable cooling-type package.])) |
Matt Spinler | af5d4c5 | 2017-05-16 10:38:43 -0500 | [diff] [blame] | 72 | AC_ARG_ENABLE([monitor], |
| 73 | AS_HELP_STRING([--disable-monitor], [Disable monitor])) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 74 | |
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 75 | AM_CONDITIONAL([WANT_JSON], [test "x$enable_json" == "xyes"]) |
Matthew Barth | 8e1b382 | 2020-11-12 11:57:23 -0600 | [diff] [blame] | 76 | AM_CONDITIONAL([WANT_JSON_CONTROL], [test "x$enable_json" == "xyes" -a "x$enable_json_control" != "xno"]) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 77 | AM_CONDITIONAL([WANT_PRESENCE], [test "x$enable_presence" != "xno"]) |
| 78 | AM_CONDITIONAL([WANT_CONTROL], [test "x$enable_control" != "xno"]) |
Brandon Wyman | ce82244 | 2017-04-10 17:48:02 -0500 | [diff] [blame] | 79 | AM_CONDITIONAL([WANT_COOLING_TYPE], [test "x$enable_cooling_type" != "xno"]) |
Matt Spinler | e567dd2 | 2017-04-27 12:27:17 -0500 | [diff] [blame] | 80 | AM_CONDITIONAL([WANT_MONITOR], [test "x$enable_monitor" != "xno"]) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 81 | |
| 82 | # Package specific checks. |
| 83 | AS_IF([test "x$enable_presence" != "xno"], [ |
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 84 | # Use runtime(json) config, otherwise default to compile time(yaml) config |
| 85 | AM_COND_IF([WANT_JSON], |
| 86 | [ |
| 87 | AC_CHECK_HEADER(nlohmann/json.hpp, , |
| 88 | [AC_MSG_ERROR([Could not find nlohmann/json.hpp... nlohmann/json package required])]) |
| 89 | # Set config flag for runtime json usage |
| 90 | AC_DEFINE([PRESENCE_USE_JSON], [1], [Fan presence use runtime json configuration]) |
| 91 | AC_MSG_NOTICE([Fan presence json configuration usage enabled]) |
| 92 | ], |
| 93 | [ |
| 94 | # Add optional yaml file argument |
| 95 | AC_ARG_VAR(PRESENCE_CONFIG, [The fan presence config file.]) |
Brad Bishop | 76596b2 | 2017-06-13 14:39:13 -0400 | [diff] [blame] | 96 | |
Brad Bishop | 76596b2 | 2017-06-13 14:39:13 -0400 | [diff] [blame] | 97 | AS_IF([test "x$PRESENCE_CONFIG" == "x"], |
| 98 | [PRESENCE_CONFIG="\${top_srcdir}/presence/example/example.yaml"]) |
| 99 | |
Brad Bishop | 76596b2 | 2017-06-13 14:39:13 -0400 | [diff] [blame] | 100 | AC_DEFINE_UNQUOTED([PRESENCE_CONFIG], ["$PRESENCE_CONFIG"], |
| 101 | [The fan presence config file.]) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 102 | |
Brad Bishop | 76596b2 | 2017-06-13 14:39:13 -0400 | [diff] [blame] | 103 | AC_SUBST([PFPGEN], |
| 104 | ["$PYTHON \${top_srcdir}/presence/pfpgen.py generate-cpp -i $PRESENCE_CONFIG"]) |
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 105 | ]) |
Matt Spinler | 635de8c | 2020-09-24 13:51:40 -0500 | [diff] [blame] | 106 | |
| 107 | AC_ARG_VAR(NUM_PRESENCE_LOG_ENTRIES, [Maximum number of entries in the message log]) |
| 108 | AS_IF([test "x$NUM_PRESENCE_LOG_ENTRIES" == "x"], [NUM_PRESENCE_LOG_ENTRIES=50]) |
| 109 | AC_DEFINE_UNQUOTED([NUM_PRESENCE_LOG_ENTRIES], [$NUM_PRESENCE_LOG_ENTRIES], |
| 110 | [Maximum number of entries in the message log]) |
| 111 | |
Matthew Barth | cc19480 | 2020-01-09 13:55:34 -0600 | [diff] [blame] | 112 | AC_CONFIG_FILES([presence/Makefile]) |
| 113 | ]) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 114 | |
| 115 | AS_IF([test "x$enable_control" != "xno"], [ |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 116 | # Add fan control Dbus attributes |
| 117 | AC_ARG_VAR(CONTROL_BUSNAME, [The fan control busname to own]) |
| 118 | AS_IF([test "x$CONTROL_BUSNAME" == "x"], |
| 119 | [CONTROL_BUSNAME="xyz.openbmc_project.Control.Thermal"]) |
| 120 | AC_DEFINE_UNQUOTED([CONTROL_BUSNAME], ["$CONTROL_BUSNAME"], |
| 121 | [The fan control busname to own]) |
Matthew Barth | 14cc043 | 2019-01-16 15:06:41 -0600 | [diff] [blame] | 122 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 123 | AC_ARG_VAR(CONTROL_OBJPATH, [The fan control root object path]) |
| 124 | AS_IF([test "x$CONTROL_OBJPATH" == "x"], |
| 125 | [CONTROL_OBJPATH="/xyz/openbmc_project/control/thermal"]) |
| 126 | AC_DEFINE_UNQUOTED([CONTROL_OBJPATH], ["$CONTROL_OBJPATH"], |
| 127 | [The fan control root object path]) |
Matthew Barth | 14cc043 | 2019-01-16 15:06:41 -0600 | [diff] [blame] | 128 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 129 | AC_ARG_VAR(CONTROL_PERSIST_ROOT_PATH, [Root path for persisting zone property states]) |
| 130 | AS_IF([test "x$CONTROL_PERSIST_ROOT_PATH" == "x"], |
| 131 | [CONTROL_PERSIST_ROOT_PATH="/var/lib/phosphor-fan-presence/control"]) |
| 132 | AC_DEFINE_UNQUOTED([CONTROL_PERSIST_ROOT_PATH], ["$CONTROL_PERSIST_ROOT_PATH"], |
| 133 | [Root path for persisting zone property states]) |
Matthew Barth | cc8912e | 2019-01-21 11:35:27 -0600 | [diff] [blame] | 134 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 135 | # Use runtime(json) config, otherwise default to compile time(yaml) config |
Matthew Barth | 8e1b382 | 2020-11-12 11:57:23 -0600 | [diff] [blame] | 136 | AM_COND_IF([WANT_JSON_CONTROL], |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 137 | [ |
| 138 | AC_CHECK_HEADER(nlohmann/json.hpp, , |
| 139 | [AC_MSG_ERROR([Could not find nlohmann/json.hpp... nlohmann/json package required])]) |
| 140 | # Set config flag for runtime json usage |
| 141 | AC_DEFINE([CONTROL_USE_JSON], [1], [Fan control use runtime json configuration]) |
| 142 | AC_MSG_NOTICE([Fan control json configuration usage enabled]) |
| 143 | ], |
| 144 | [ |
| 145 | # Add optional yaml file arguments |
| 146 | AC_ARG_VAR(FAN_DEF_YAML_FILE, |
| 147 | [The fan definition file to use]) |
| 148 | AS_IF([test "x$FAN_DEF_YAML_FILE" == "x"], |
| 149 | [FAN_DEF_YAML_FILE="\${top_srcdir}/control/example/fans.yaml"]) |
| 150 | AC_DEFINE_UNQUOTED([FAN_DEF_YAML_FILE], ["$FAN_DEF_YAML_FILE"], |
| 151 | [The fan definition file to use]) |
Matt Spinler | 77d32d1 | 2017-04-12 09:51:41 -0500 | [diff] [blame] | 152 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 153 | AC_ARG_VAR(FAN_ZONE_YAML_FILE, |
| 154 | [The fan zone definition file to use]) |
| 155 | AS_IF([test "x$FAN_ZONE_YAML_FILE" == "x"], |
| 156 | [FAN_ZONE_YAML_FILE="\${top_srcdir}/control/example/zones.yaml"]) |
| 157 | AC_DEFINE_UNQUOTED([FAN_ZONE_YAML_FILE], ["$FAN_ZONE_YAML_FILE"], |
| 158 | [The fan zone definition file to use]) |
Matt Spinler | 77d32d1 | 2017-04-12 09:51:41 -0500 | [diff] [blame] | 159 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 160 | AC_ARG_VAR(ZONE_EVENTS_YAML_FILE, |
| 161 | [The zone events definition file to use]) |
| 162 | AS_IF([test "x$ZONE_EVENTS_YAML_FILE" == "x"], |
| 163 | [ZONE_EVENTS_YAML_FILE="\${top_srcdir}/control/example/events.yaml"]) |
| 164 | AC_DEFINE_UNQUOTED([ZONE_EVENTS_YAML_FILE], ["$ZONE_EVENTS_YAML_FILE"], |
| 165 | [The zone events definition file to use]) |
Matthew Barth | d4d0f08 | 2017-05-16 13:51:10 -0500 | [diff] [blame] | 166 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 167 | AC_ARG_VAR(ZONE_CONDITIONS_YAML_FILE, |
| 168 | [The zone conditions definition file to use]) |
| 169 | AS_IF([test "x$ZONE_CONDITIONS_YAML_FILE" == "x"], |
| 170 | [ZONE_CONDITIONS_YAML_FILE="\${top_srcdir}/control/example/zone_conditions.yaml"]) |
| 171 | AC_DEFINE_UNQUOTED([ZONE_CONDITIONS_YAML_FILE], ["$ZONE_CONDITIONS_YAML_FILE"], |
| 172 | [The zone conditions definition file to use]) |
Gunnar Mills | 28c1a09 | 2017-06-26 11:16:41 -0500 | [diff] [blame] | 173 | |
Matthew Barth | d87f89f | 2020-07-30 10:41:32 -0500 | [diff] [blame] | 174 | AC_SUBST([GEN_FAN_ZONE_DEFS], |
| 175 | ["$PYTHON \${top_srcdir}/control/gen-fan-zone-defs.py \ |
| 176 | -f $FAN_DEF_YAML_FILE \ |
| 177 | -z $FAN_ZONE_YAML_FILE \ |
| 178 | -e $ZONE_EVENTS_YAML_FILE \ |
| 179 | -c $ZONE_CONDITIONS_YAML_FILE"]) |
| 180 | ]) |
Matthew Barth | 167d2dd | 2020-08-04 12:19:16 -0500 | [diff] [blame] | 181 | AC_CONFIG_FILES([control/json/Makefile control/Makefile]) |
Brad Bishop | 93919bb | 2017-04-22 14:58:29 -0400 | [diff] [blame] | 182 | ]) |
Matthew Barth | 681c98d | 2017-02-17 16:05:57 -0600 | [diff] [blame] | 183 | |
Brandon Wyman | ce82244 | 2017-04-10 17:48:02 -0500 | [diff] [blame] | 184 | AS_IF([test "x$enable_cooling_type" != "xno"], [ |
Brandon Wyman | fef0295 | 2017-03-31 18:13:21 -0500 | [diff] [blame] | 185 | AC_CONFIG_FILES([cooling-type/Makefile]) |
Brandon Wyman | ca60e10 | 2017-03-29 17:06:02 -0500 | [diff] [blame] | 186 | ]) |
Matthew Barth | bedefd8 | 2020-06-02 15:39:56 -0500 | [diff] [blame] | 187 | |
Matt Spinler | e567dd2 | 2017-04-27 12:27:17 -0500 | [diff] [blame] | 188 | AS_IF([test "x$enable_monitor" != "xno"], [ |
Matthew Barth | bedefd8 | 2020-06-02 15:39:56 -0500 | [diff] [blame] | 189 | # Use runtime(json) config, otherwise default to compile time(yaml) config |
| 190 | AM_COND_IF([WANT_JSON], |
| 191 | [ |
| 192 | AC_CHECK_HEADER(nlohmann/json.hpp, , |
| 193 | [AC_MSG_ERROR([Could not find nlohmann/json.hpp... nlohmann/json package required])]) |
| 194 | # Set config flag for runtime json usage |
| 195 | AC_DEFINE([MONITOR_USE_JSON], [1], [Fan monitor use runtime json configuration]) |
| 196 | AC_MSG_NOTICE([Fan monitor json configuration usage enabled]) |
| 197 | ], |
| 198 | [ |
| 199 | AC_ARG_VAR(FAN_MONITOR_YAML_FILE, |
| 200 | [The fan monitor definition file to use]) |
| 201 | AS_IF([test "x$FAN_MONITOR_YAML_FILE" == "x"], |
| 202 | [FAN_MONITOR_YAML_FILE="\${top_srcdir}/monitor/example/monitor.yaml"]) |
| 203 | AC_DEFINE_UNQUOTED([FAN_MONITOR_YAML_FILE], ["$FAN_MONITOR_YAML_FILE"], |
| 204 | [The fan monitor definition file to use]) |
Matt Spinler | 1432184 | 2017-04-28 15:27:43 -0500 | [diff] [blame] | 205 | |
Matthew Barth | bedefd8 | 2020-06-02 15:39:56 -0500 | [diff] [blame] | 206 | AC_SUBST([GEN_FAN_MONITOR_DEFS], |
| 207 | ["$PYTHON \${top_srcdir}/monitor/gen-fan-monitor-defs.py \ |
| 208 | -m $FAN_MONITOR_YAML_FILE"]) |
| 209 | ]) |
Matt Spinler | 69b0cf0 | 2020-10-14 10:59:03 -0500 | [diff] [blame] | 210 | |
| 211 | AC_ARG_VAR(NUM_MONITOR_LOG_ENTRIES, [Maximum number of entries in the message log]) |
| 212 | AS_IF([test "x$NUM_MONITOR_LOG_ENTRIES" == "x"], [NUM_MONITOR_LOG_ENTRIES=75]) |
| 213 | AC_DEFINE_UNQUOTED([NUM_MONITOR_LOG_ENTRIES], [$NUM_MONITOR_LOG_ENTRIES], |
| 214 | [Maximum number of entries in the message log]) |
| 215 | |
Matthew Barth | bedefd8 | 2020-06-02 15:39:56 -0500 | [diff] [blame] | 216 | AC_CONFIG_FILES([monitor/Makefile]) |
Matt Spinler | e567dd2 | 2017-04-27 12:27:17 -0500 | [diff] [blame] | 217 | ]) |
Brandon Wyman | ca60e10 | 2017-03-29 17:06:02 -0500 | [diff] [blame] | 218 | |
Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 219 | # Create configured output |
Matt Spinler | 0023743 | 2020-10-14 10:36:41 -0500 | [diff] [blame] | 220 | AC_CONFIG_FILES([Makefile test/Makefile presence/test/Makefile monitor/test/Makefile]) |
Matthew Barth | ae0e96c | 2017-01-20 13:54:59 -0600 | [diff] [blame] | 221 | AC_OUTPUT |