blob: 2af3e093e8bc96bf93a5cfb8636443b928c7e621 [file] [log] [blame]
Matthew Barthae0e96c2017-01-20 13:54:59 -06001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-fan-presence], [1.0],
4[https://github.com/openbmc/phosphor-fan-presence/issues])
5AC_LANG([C++])
6AC_CONFIG_HEADERS([config.h])
7AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
8AM_SILENT_RULES([yes])
9
Lei YUbd2e80a2018-09-19 11:17:09 +080010# Use gcc-ar and gcc-ranlib for static libraries built with -flto
11AC_SUBST([AR], [${ac_tool_prefix}gcc-ar])
12AC_SUBST([RANLIB], [${ac_tool_prefix}gcc-ranlib])
13
Matthew Barthae0e96c2017-01-20 13:54:59 -060014# Checks for programs.
15AC_PROG_CXX
16AM_PROG_AR
17AC_PROG_INSTALL
18AC_PROG_MAKE_SET
Brad Bishop93919bb2017-04-22 14:58:29 -040019
Matthew Barth681c98d2017-02-17 16:05:57 -060020# Python
Matthew Barthf24d7742020-03-17 16:12:15 -050021AM_PATH_PYTHON([3], [AC_SUBST([PYTHON], [echo "$PYTHON"])],
22[AC_MSG_ERROR([Minimum python version(3) not found])])
Matthew Barthae0e96c2017-01-20 13:54:59 -060023
24# Checks for typedefs, structures, and compiler characteristics.
Vernon Mauery48df9592018-10-04 10:08:13 -070025AX_CXX_COMPILE_STDCXX_17([noext])
Matthew Barthae0e96c2017-01-20 13:54:59 -060026AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
27
28# Checks for libraries.
Patrick Venture4b258ac2019-02-13 14:48:21 -080029PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus])
30PKG_CHECK_MODULES([SDEVENTPLUS], [sdeventplus])
31PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
32PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221])
33PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces])
34PKG_CHECK_MODULES([LIBEVDEV], [libevdev])
Matthew Barthf3e70472019-12-03 13:33:20 -060035PKG_CHECK_MODULES([STDPLUS], [stdplus])
Matthew Barth1826c732020-08-28 08:40:59 -050036PKG_CHECK_MODULES([FMT], [fmt])
Matthew Barth293477d2017-02-17 15:39:36 -060037
Matthew Barthae0e96c2017-01-20 13:54:59 -060038# Checks for library functions.
39LT_INIT # Required for systemd linking
40
Matt Spinler59c29c72017-04-27 11:17:28 -050041# Check/set gtest specific functions.
42AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"])
43AC_SUBST(GTEST_CPPFLAGS)
44AC_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)
47AC_ARG_VAR(OECORE_TARGET_SYSROOT,
48 [Path to the OE SDK SYSROOT])
49AS_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 Barthcc194802020-01-09 13:55:34 -060062AC_ARG_ENABLE([json],
63 AS_HELP_STRING([--enable-json], [Use json at runtime to configure fan packages.]))
Brad Bishop93919bb2017-04-22 14:58:29 -040064AC_ARG_ENABLE([presence],
65 AS_HELP_STRING([--disable-presence], [Disable fan presence package.]))
66AC_ARG_ENABLE([control],
67 AS_HELP_STRING([--disable-control], [Disable fan control package.]))
Matthew Barth8e1b3822020-11-12 11:57:23 -060068AC_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 Wymanca60e102017-03-29 17:06:02 -050070AC_ARG_ENABLE([cooling-type],
71 AS_HELP_STRING([--disable-cooling-type], [Disable cooling-type package.]))
Matt Spinleraf5d4c52017-05-16 10:38:43 -050072AC_ARG_ENABLE([monitor],
73 AS_HELP_STRING([--disable-monitor], [Disable monitor]))
Brad Bishop93919bb2017-04-22 14:58:29 -040074
Matthew Barthcc194802020-01-09 13:55:34 -060075AM_CONDITIONAL([WANT_JSON], [test "x$enable_json" == "xyes"])
Matthew Barth8e1b3822020-11-12 11:57:23 -060076AM_CONDITIONAL([WANT_JSON_CONTROL], [test "x$enable_json" == "xyes" -a "x$enable_json_control" != "xno"])
Brad Bishop93919bb2017-04-22 14:58:29 -040077AM_CONDITIONAL([WANT_PRESENCE], [test "x$enable_presence" != "xno"])
78AM_CONDITIONAL([WANT_CONTROL], [test "x$enable_control" != "xno"])
Brandon Wymance822442017-04-10 17:48:02 -050079AM_CONDITIONAL([WANT_COOLING_TYPE], [test "x$enable_cooling_type" != "xno"])
Matt Spinlere567dd22017-04-27 12:27:17 -050080AM_CONDITIONAL([WANT_MONITOR], [test "x$enable_monitor" != "xno"])
Brad Bishop93919bb2017-04-22 14:58:29 -040081
82# Package specific checks.
83AS_IF([test "x$enable_presence" != "xno"], [
Matthew Barthcc194802020-01-09 13:55:34 -060084 # 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 Bishop76596b22017-06-13 14:39:13 -040096
Brad Bishop76596b22017-06-13 14:39:13 -040097 AS_IF([test "x$PRESENCE_CONFIG" == "x"],
98 [PRESENCE_CONFIG="\${top_srcdir}/presence/example/example.yaml"])
99
Brad Bishop76596b22017-06-13 14:39:13 -0400100 AC_DEFINE_UNQUOTED([PRESENCE_CONFIG], ["$PRESENCE_CONFIG"],
101 [The fan presence config file.])
Brad Bishop93919bb2017-04-22 14:58:29 -0400102
Brad Bishop76596b22017-06-13 14:39:13 -0400103 AC_SUBST([PFPGEN],
104 ["$PYTHON \${top_srcdir}/presence/pfpgen.py generate-cpp -i $PRESENCE_CONFIG"])
Matthew Barthcc194802020-01-09 13:55:34 -0600105 ])
Matt Spinler635de8c2020-09-24 13:51:40 -0500106
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 Barthcc194802020-01-09 13:55:34 -0600112 AC_CONFIG_FILES([presence/Makefile])
113])
Brad Bishop93919bb2017-04-22 14:58:29 -0400114
115AS_IF([test "x$enable_control" != "xno"], [
Matthew Barthd87f89f2020-07-30 10:41:32 -0500116 # 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 Barth14cc0432019-01-16 15:06:41 -0600122
Matthew Barthd87f89f2020-07-30 10:41:32 -0500123 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 Barth14cc0432019-01-16 15:06:41 -0600128
Matthew Barthd87f89f2020-07-30 10:41:32 -0500129 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 Barthcc8912e2019-01-21 11:35:27 -0600134
Matthew Barthd87f89f2020-07-30 10:41:32 -0500135 # Use runtime(json) config, otherwise default to compile time(yaml) config
Matthew Barth8e1b3822020-11-12 11:57:23 -0600136 AM_COND_IF([WANT_JSON_CONTROL],
Matthew Barthd87f89f2020-07-30 10:41:32 -0500137 [
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 Spinler77d32d12017-04-12 09:51:41 -0500152
Matthew Barthd87f89f2020-07-30 10:41:32 -0500153 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 Spinler77d32d12017-04-12 09:51:41 -0500159
Matthew Barthd87f89f2020-07-30 10:41:32 -0500160 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 Barthd4d0f082017-05-16 13:51:10 -0500166
Matthew Barthd87f89f2020-07-30 10:41:32 -0500167 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 Mills28c1a092017-06-26 11:16:41 -0500173
Matthew Barthd87f89f2020-07-30 10:41:32 -0500174 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 Barth167d2dd2020-08-04 12:19:16 -0500181 AC_CONFIG_FILES([control/json/Makefile control/Makefile])
Brad Bishop93919bb2017-04-22 14:58:29 -0400182])
Matthew Barth681c98d2017-02-17 16:05:57 -0600183
Brandon Wymance822442017-04-10 17:48:02 -0500184AS_IF([test "x$enable_cooling_type" != "xno"], [
Brandon Wymanfef02952017-03-31 18:13:21 -0500185 AC_CONFIG_FILES([cooling-type/Makefile])
Brandon Wymanca60e102017-03-29 17:06:02 -0500186])
Matthew Barthbedefd82020-06-02 15:39:56 -0500187
Matt Spinlere567dd22017-04-27 12:27:17 -0500188AS_IF([test "x$enable_monitor" != "xno"], [
Matthew Barthbedefd82020-06-02 15:39:56 -0500189 # 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 Spinler14321842017-04-28 15:27:43 -0500205
Matthew Barthbedefd82020-06-02 15:39:56 -0500206 AC_SUBST([GEN_FAN_MONITOR_DEFS],
207 ["$PYTHON \${top_srcdir}/monitor/gen-fan-monitor-defs.py \
208 -m $FAN_MONITOR_YAML_FILE"])
209 ])
Matt Spinler69b0cf02020-10-14 10:59:03 -0500210
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 Barthbedefd82020-06-02 15:39:56 -0500216 AC_CONFIG_FILES([monitor/Makefile])
Matt Spinlere567dd22017-04-27 12:27:17 -0500217])
Brandon Wymanca60e102017-03-29 17:06:02 -0500218
Matthew Barthae0e96c2017-01-20 13:54:59 -0600219# Create configured output
Matt Spinler00237432020-10-14 10:36:41 -0500220AC_CONFIG_FILES([Makefile test/Makefile presence/test/Makefile monitor/test/Makefile])
Matthew Barthae0e96c2017-01-20 13:54:59 -0600221AC_OUTPUT