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