blob: 7fb93d5bc6e72f60901ce55889ca809245d2f077 [file] [log] [blame]
Patrick Ventureef3aead2018-09-12 08:53:29 -07001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-ipmi-blobs], [1.0], [https://github.com/openbmc/phosphor-ipmi-blobs/issues])
4AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
Patrick Venture540b64d2018-11-28 14:56:28 -08006AC_CONFIG_MACRO_DIRS([m4])
Patrick Ventureef3aead2018-09-12 08:53:29 -07007AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
8AM_SILENT_RULES([yes])
9
10# Checks for programs.
11AC_PROG_CXX
12AM_PROG_AR
13AC_PROG_INSTALL
14AC_PROG_MAKE_SET
15
16# Checks for typedefs, structures, and compiler characteristics.
Patrick Venturef222cf52018-09-12 10:15:48 -070017AX_CXX_COMPILE_STDCXX_17([noext])
Patrick Ventureef3aead2018-09-12 08:53:29 -070018AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
19
Patrick Ventureef3aead2018-09-12 08:53:29 -070020# Checks for library functions.
Patrick Venture6c415c62018-11-14 14:01:36 -080021LT_INIT([dlopen disable-static shared]) # Required for systemd linking
Patrick Venture4dc584d2018-09-27 15:00:46 -070022LT_LIB_DLLOAD
23
24# Checks for libraries.
Patrick Venture5e70a6b2018-11-21 21:12:38 -080025PKG_CHECK_MODULES(
26 [PHOSPHOR_LOGGING],
27 [phosphor-logging],
28 [],
29 [AC_MSG_ERROR([Could not find phosphor-logging...openbmc/phosphor-logging package required])]
30)
31AC_CHECK_HEADER(
32 [host-ipmid],
33 [AC_MSG_ERROR(["phosphor-host-ipmid required and not found."])]
34)
35AC_CHECK_HEADER(
36 experimental/filesystem,
37 [],
38 [AC_MSG_ERROR([Could not find experimental/filesystem...libstdc++fs developement package required])]
39)
Patrick Venture4dc584d2018-09-27 15:00:46 -070040AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
Patrick Ventureef3aead2018-09-12 08:53:29 -070041
42# Check/set gtest specific functions.
43PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
44PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])])
45PKG_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
48AC_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.
53AC_ARG_VAR(OECORE_TARGET_SYSROOT,
Patrick Venture5e70a6b2018-11-21 21:12:38 -080054 [Path to the OE SDK SYSROOT]
55)
Patrick Ventureef3aead2018-09-12 08:53:29 -070056
57# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
58# used in test/Makefile.am
59AS_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 Venture8aee0572018-11-28 14:59:23 -080072AC_ARG_VAR(BLOB_LIB_PATH, [The file path to search for libraries.])
73AS_IF([test "x$BLOB_LIB_PATH" == "x"], [BLOB_LIB_PATH="/usr/lib/blob-ipmid"])
74AC_DEFINE_UNQUOTED([BLOB_LIB_PATH], ["$BLOB_LIB_PATH"], [The file path to search for libraries.])
75
Patrick Ventureef3aead2018-09-12 08:53:29 -070076# Create configured output
77AC_CONFIG_FILES([Makefile test/Makefile])
78AC_OUTPUT