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