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 | ) |
| 31 | AC_CHECK_HEADER( |
| 32 | [host-ipmid], |
| 33 | [AC_MSG_ERROR(["phosphor-host-ipmid required and not found."])] |
| 34 | ) |
| 35 | AC_CHECK_HEADER( |
| 36 | experimental/filesystem, |
| 37 | [], |
| 38 | [AC_MSG_ERROR([Could not find experimental/filesystem...libstdc++fs developement package required])] |
| 39 | ) |
Patrick Venture | 4dc584d | 2018-09-27 15:00:46 -0700 | [diff] [blame] | 40 | AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 41 | |
| 42 | # Check/set gtest specific functions. |
| 43 | PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])]) |
| 44 | PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])]) |
| 45 | PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])]) |
| 46 | |
| 47 | # Add --enable-oe-sdk flag to configure script |
| 48 | AC_ARG_ENABLE([oe-sdk], |
| 49 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 50 | ) |
| 51 | |
| 52 | # Check for OECORE_TARGET_SYSROOT in the environment. |
| 53 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
Patrick Venture | 5e70a6b | 2018-11-21 21:12:38 -0800 | [diff] [blame^] | 54 | [Path to the OE SDK SYSROOT] |
| 55 | ) |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 56 | |
| 57 | # Configure OESDK_TESTCASE_FLAGS environment variable, which will be later |
| 58 | # used in test/Makefile.am |
| 59 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 60 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 61 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 62 | ) |
| 63 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 64 | [ |
| 65 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 66 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 67 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 68 | ] |
| 69 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 70 | ) |
| 71 | |
Patrick Venture | 8aee057 | 2018-11-28 14:59:23 -0800 | [diff] [blame] | 72 | AC_ARG_VAR(BLOB_LIB_PATH, [The file path to search for libraries.]) |
| 73 | AS_IF([test "x$BLOB_LIB_PATH" == "x"], [BLOB_LIB_PATH="/usr/lib/blob-ipmid"]) |
| 74 | AC_DEFINE_UNQUOTED([BLOB_LIB_PATH], ["$BLOB_LIB_PATH"], [The file path to search for libraries.]) |
| 75 | |
Patrick Venture | ef3aead | 2018-09-12 08:53:29 -0700 | [diff] [blame] | 76 | # Create configured output |
| 77 | AC_CONFIG_FILES([Makefile test/Makefile]) |
| 78 | AC_OUTPUT |