blob: ebd6a7045cb708d25cd0ce4ec25ad55af36dd695 [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)
William A. Kennington IIIacebece2019-02-07 15:15:44 -080031PKG_CHECK_MODULES(
32 [LIBIPMID],
33 [libipmid],
34 [],
35 [AC_MSG_ERROR([Could not find libipmid...openbmc/phosphor-host-ipmid package required])]
Patrick Venture5e70a6b2018-11-21 21:12:38 -080036)
37AC_CHECK_HEADER(
38 experimental/filesystem,
39 [],
40 [AC_MSG_ERROR([Could not find experimental/filesystem...libstdc++fs developement package required])]
41)
Patrick Venture4dc584d2018-09-27 15:00:46 -070042AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
Patrick Ventureef3aead2018-09-12 08:53:29 -070043
44# Check/set gtest specific functions.
45PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
46PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])])
47PKG_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
50AC_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.
55AC_ARG_VAR(OECORE_TARGET_SYSROOT,
Patrick Venture5e70a6b2018-11-21 21:12:38 -080056 [Path to the OE SDK SYSROOT]
57)
Patrick Ventureef3aead2018-09-12 08:53:29 -070058
59# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
60# used in test/Makefile.am
61AS_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 Venture8aee0572018-11-28 14:59:23 -080074AC_ARG_VAR(BLOB_LIB_PATH, [The file path to search for libraries.])
75AS_IF([test "x$BLOB_LIB_PATH" == "x"], [BLOB_LIB_PATH="/usr/lib/blob-ipmid"])
76AC_DEFINE_UNQUOTED([BLOB_LIB_PATH], ["$BLOB_LIB_PATH"], [The file path to search for libraries.])
77
Patrick Ventureef3aead2018-09-12 08:53:29 -070078# Create configured output
79AC_CONFIG_FILES([Makefile test/Makefile])
80AC_OUTPUT