Matt Spinler | d82a5f4 | 2017-07-24 13:40:37 -0500 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([witherspoon-pfault-analysis], [1.0], |
| 4 | [https://github.com/openbmc/witherspoon-pfault-analysis/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 | |
| 10 | # Checks for programs. |
| 11 | AC_PROG_CXX |
| 12 | AM_PROG_AR |
| 13 | AC_PROG_INSTALL |
| 14 | AC_PROG_MAKE_SET |
| 15 | |
| 16 | # Checks for typedefs, structures, and compiler characteristics. |
| 17 | AX_CXX_COMPILE_STDCXX_14([noext]) |
| 18 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 19 | |
Matt Spinler | ee7adb7 | 2017-08-21 15:17:19 -0500 | [diff] [blame] | 20 | # Download gpio.h from github if necessary. |
| 21 | AC_CHECK_HEADER(linux/gpio.h,[HAVE_LINUX_GPIO_H=""],[HAVE_LINUX_GPIO_H="-I linux/gpio.h"]) |
| 22 | AS_IF([test "$HAVE_LINUX_GPIO_H" != ""], |
| 23 | AC_MSG_WARN([Could not find linux/gpio.h: Attempting to download locally for building from https://raw.githubusercontent.com/torvalds/linux/master/include/uapi/linux/gpio.h]) |
| 24 | AC_SUBST([BT_BMC_DL],[`mkdir -p linux;wget https://raw.githubusercontent.com/torvalds/linux/master/include/uapi/linux/gpio.h -O linux/gpio.h`]) |
| 25 | ) |
| 26 | |
Matt Spinler | d82a5f4 | 2017-07-24 13:40:37 -0500 | [diff] [blame] | 27 | PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus],, |
| 28 | AC_MSG_ERROR(["Requires sdbusplus package."])) |
| 29 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],,\ |
| 30 | AC_MSG_ERROR(["Requires phosphor-logging package."])) |
| 31 | PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces],,\ |
| 32 | AC_MSG_ERROR(["Requires phosphor-dbus-interfaces package."])) |
Matt Spinler | 84cd0a5 | 2017-08-04 08:53:30 -0500 | [diff] [blame] | 33 | # Check for sdbus++ |
| 34 | AC_PATH_PROG([SDBUSPLUSPLUS], [sdbus++]) |
| 35 | AS_IF([test "x$SDBUSPLUSPLUS" == "x"], |
| 36 | AC_MSG_ERROR(["Requires sdbus++"])) |
Matt Spinler | d82a5f4 | 2017-07-24 13:40:37 -0500 | [diff] [blame] | 37 | |
| 38 | # Checks for library functions. |
| 39 | LT_INIT # Required for systemd linking |
| 40 | |
Matt Spinler | 2f13544 | 2017-09-18 13:52:10 -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 | |
| 45 | # Test cases require SDK so only build if we're told to (and SDK is available) |
| 46 | AC_ARG_ENABLE([oe-sdk], |
| 47 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 48 | ) |
| 49 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 50 | [Path to the OE SDK SYSROOT]) |
| 51 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 52 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 53 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 54 | ) |
| 55 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 56 | [ |
| 57 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 58 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 59 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 60 | ] |
| 61 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 62 | ) |
| 63 | |
Matt Spinler | 45a054a | 2017-08-22 15:07:07 -0500 | [diff] [blame] | 64 | AC_ARG_ENABLE([turn-off-ucd90160-access], |
| 65 | AS_HELP_STRING([--enable-turn-off-ucd90160-access], [Turn off UCD90160 hardware access]) |
| 66 | ) |
| 67 | |
| 68 | AC_ARG_VAR(UCD90160_DEVICE_ACCESS, [Turn off UCD90160 hardware access]) |
| 69 | |
| 70 | # Always define UCD90160_DEVICE_ACCESS unless explicitly turned off |
| 71 | AS_IF([test "x$enable_turn_off_ucd90160_access" != "xyes"], |
| 72 | [UCD90160_DEVICE_ACCESS="yes"] |
| 73 | AC_DEFINE_UNQUOTED([UCD90160_DEVICE_ACCESS], ["$UCD90160_DEVICE_ACCESS"], [Turn off UCD90160 hardware access]) |
| 74 | ) |
| 75 | |
Matt Spinler | d82a5f4 | 2017-07-24 13:40:37 -0500 | [diff] [blame] | 76 | # Create configured output |
Brandon Wyman | 24e422f | 2017-07-25 19:40:14 -0500 | [diff] [blame] | 77 | AC_CONFIG_FILES([Makefile power-sequencer/Makefile power-supply/Makefile test/Makefile]) |
Matt Spinler | d82a5f4 | 2017-07-24 13:40:37 -0500 | [diff] [blame] | 78 | AC_OUTPUT |