blob: cc0fc6db411abb2aab5d268e1ea410bd9b2028fe [file] [log] [blame]
Kun Yi91beea62018-11-26 15:23:14 -08001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-ipmi-blobs-binarystore], [1.0], [https://github.com/openbmc/phosphor-ipmi-blobs-binarystore/issues])
4AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
6AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
7AM_SILENT_RULES([yes])
8
9# Checks for programs.
10AC_PROG_CXX
11AM_PROG_AR
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14
15# Checks for typedefs, structures, and compiler characteristics.
16AX_CXX_COMPILE_STDCXX_17([noext])
17AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
18
19# Checks for library functions.
20LT_INIT # Required for systemd linking
21
22# Checks for libraries.
Kun Yi0a940b92019-01-07 16:33:11 -080023PKG_CHECK_MODULES([PROTOBUF], [protobuf], [], [AC_MSG_ERROR(["protobuf required and not found"])])
Kun Yi91beea62018-11-26 15:23:14 -080024PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],, [AC_MSG_ERROR([Could not find phosphor-logging...openbmc/phosphor-logging package required])])
25AC_CHECK_HEADER([blobs-ipmid], [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])])
Kun Yi70059172019-02-22 16:31:42 -080026AC_CHECK_HEADER(boost/endian/arithmetic.hpp, [])
Kun Yi4dc76482019-03-05 16:06:19 -080027AC_CHECK_HEADER(nlohmann/json.hpp, [])
Kun Yi91beea62018-11-26 15:23:14 -080028
29# Check/set gtest specific functions.
30PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
31PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])])
32PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])])
33
34# Add --enable-oe-sdk flag to configure script
35AC_ARG_ENABLE([oe-sdk],
36 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
37)
38
Maksym Sloykoeba86882021-10-19 18:21:40 +000039# Add --disable-blobtool flag to configure script
40AC_ARG_ENABLE([blobtool],
41 AS_HELP_STRING([--disable-blobtool], [Disable blobtool, command line tool to inspect the blobs]),
42 [case "${enableval}" in
43 no) build_blobtool=false;;
44 *) build_blobtool=true;;
45 esac],
46 [build_blobtool=true]
47)
48AM_CONDITIONAL([BUILD_BLOBTOOL], [ test x${build_blobtool} = xtrue ])
49
Kun Yi91beea62018-11-26 15:23:14 -080050# Check for OECORE_TARGET_SYSROOT in the environment.
51AC_ARG_VAR(OECORE_TARGET_SYSROOT,
52 [Path to the OE SDK SYSROOT])
53
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
69# Create configured output
70AC_CONFIG_FILES([Makefile test/Makefile])
71AC_OUTPUT