Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([phosphor-ipmi-blobs], [1.0], [https://github.com/openbmc/phosphor-ipmi-blobs/issues]) |
| 4 | AC_LANG([C++]) |
| 5 | AC_CONFIG_HEADERS([config.h]) |
Patrick Venture | 540b64d | 2018-11-28 14:56:28 -0800 | [diff] [blame] | 6 | AC_CONFIG_MACRO_DIRS([m4]) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 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. |
Patrick Venture | f222cf5 | 2018-09-12 10:15:48 -0700 | [diff] [blame] | 17 | AX_CXX_COMPILE_STDCXX_17([noext]) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 18 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 19 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 20 | # Checks for library functions. |
Patrick Venture | 6c415c6 | 2018-11-14 14:01:36 -0800 | [diff] [blame] | 21 | LT_INIT([dlopen disable-static shared]) # Required for systemd linking |
Patrick Venture | 4dc584d | 2018-09-27 15:00:46 -0700 | [diff] [blame] | 22 | LT_LIB_DLLOAD |
| 23 | |
| 24 | # Checks for libraries. |
Patrick Venture | 5e70a6b | 2018-11-21 21:12:38 -0800 | [diff] [blame] | 25 | PKG_CHECK_MODULES( |
| 26 | [PHOSPHOR_LOGGING], |
| 27 | [phosphor-logging], |
| 28 | [], |
| 29 | [AC_MSG_ERROR([Could not find phosphor-logging...openbmc/phosphor-logging package required])] |
| 30 | ) |
William A. Kennington III | acebece | 2019-02-07 15:15:44 -0800 | [diff] [blame^] | 31 | PKG_CHECK_MODULES( |
| 32 | [LIBIPMID], |
| 33 | [libipmid], |
| 34 | [], |
| 35 | [AC_MSG_ERROR([Could not find libipmid...openbmc/phosphor-host-ipmid package required])] |
Patrick Venture | 5e70a6b | 2018-11-21 21:12:38 -0800 | [diff] [blame] | 36 | ) |
| 37 | AC_CHECK_HEADER( |
| 38 | experimental/filesystem, |
| 39 | [], |
| 40 | [AC_MSG_ERROR([Could not find experimental/filesystem...libstdc++fs developement package required])] |
| 41 | ) |
Patrick Venture | 4dc584d | 2018-09-27 15:00:46 -0700 | [diff] [blame] | 42 | AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 43 | |
| 44 | # Check/set gtest specific functions. |
| 45 | PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])]) |
| 46 | PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])]) |
| 47 | PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])]) |
| 48 | |
| 49 | # Add --enable-oe-sdk flag to configure script |
| 50 | AC_ARG_ENABLE([oe-sdk], |
| 51 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 52 | ) |
| 53 | |
| 54 | # Check for OECORE_TARGET_SYSROOT in the environment. |
| 55 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
Patrick Venture | 5e70a6b | 2018-11-21 21:12:38 -0800 | [diff] [blame] | 56 | [Path to the OE SDK SYSROOT] |
| 57 | ) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 58 | |
| 59 | # Configure OESDK_TESTCASE_FLAGS environment variable, which will be later |
| 60 | # used in test/Makefile.am |
| 61 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 62 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 63 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 64 | ) |
| 65 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 66 | [ |
| 67 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 68 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 69 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 70 | ] |
| 71 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 72 | ) |
| 73 | |
Patrick Venture | 8aee057 | 2018-11-28 14:59:23 -0800 | [diff] [blame] | 74 | AC_ARG_VAR(BLOB_LIB_PATH, [The file path to search for libraries.]) |
| 75 | AS_IF([test "x$BLOB_LIB_PATH" == "x"], [BLOB_LIB_PATH="/usr/lib/blob-ipmid"]) |
| 76 | AC_DEFINE_UNQUOTED([BLOB_LIB_PATH], ["$BLOB_LIB_PATH"], [The file path to search for libraries.]) |
| 77 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 78 | # Create configured output |
| 79 | AC_CONFIG_FILES([Makefile test/Makefile]) |
| 80 | AC_OUTPUT |