blob: ded5644e23c0de3412ab839991e30975b84d75f1 [file] [log] [blame]
Matthew Barthce3490e2016-10-18 14:25:10 -05001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([ipmi-fru-parser], [1.0], [https://github.com/openbmc/ipmi-fru-parser/issues])
4AC_CONFIG_HEADERS([config.h])
5AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
6AM_SILENT_RULES([yes])
7
8# Checks for programs.
9AC_PROG_CXX
10AC_PROG_CC
11AM_PROG_AR
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14AC_PROG_LN_S
Deepak Kodihalli92cea962017-01-25 10:50:23 -060015AM_PATH_PYTHON([2.7],
16 [AC_SUBST([PYTHON], [echo "$PYTHON"])],
17 [AC_MSG_ERROR([Could not find python-2.7 installed...python-2.7 is required])])
Matthew Barthce3490e2016-10-18 14:25:10 -050018
19# Checks for libraries.
Patrick Williams9149a772017-06-01 15:39:40 -050020AC_CHECK_LIB([mapper], [mapper_get_service],,\
21 [AC_MSG_ERROR([Could not find libmapper: phosphor-objmgr package required])])
Matthew Barthce3490e2016-10-18 14:25:10 -050022PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221])
Deepak Kodihalli61845fd2017-02-16 08:09:03 -060023PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus],,\
Patrick Williams9149a772017-06-01 15:39:40 -050024 [AC_MSG_ERROR([Requires sdbusplus package.])])
Patrick Ventured57cd012018-10-16 19:46:24 -070025PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],,\
26 [AC_MSG_ERROR([The openbmc/phosphor-logging package is required])])
Matthew Barthce3490e2016-10-18 14:25:10 -050027
28# Checks for header files.
29AC_CHECK_HEADER(systemd/sd-bus.h, ,[AC_MSG_ERROR([Could not find systemd/sd-bus.h...systemd development package required])])
30AC_CHECK_HEADER(host-ipmid/ipmid-api.h, ,[AC_MSG_ERROR([Could not find host-ipmid/ipmid-api.h...host-ipmid package required])])
31
32# Checks for typedefs, structures, and compiler characteristics.
Vernon Mauery5fcff672018-10-04 10:38:00 -070033AX_CXX_COMPILE_STDCXX_17([noext])
Matthew Barthce3490e2016-10-18 14:25:10 -050034AX_APPEND_COMPILE_FLAGS([-flto -fPIC -Wall -Werror], [CXXFLAGS])
35AX_APPEND_COMPILE_FLAGS([-flto -fPIC -Wall -Werror], [CFLAGS])
36
37# Checks for library functions.
38LT_INIT([shared])
39
40# Check/set gtest specific functions.
41AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"])
42AC_SUBST(GTEST_CPPFLAGS)
43
44AC_ARG_ENABLE([oe-sdk],
45 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
46)
47AC_ARG_VAR(OECORE_TARGET_SYSROOT,
48 [Path to the OE SDK SYSROOT])
49AS_IF([test "x$enable_oe_sdk" == "xyes"],
50 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
51 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
52 )
53 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
54 [
55 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
56 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
57 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
58 ]
59 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
60)
61
Deepak Kodihalli92cea962017-01-25 10:50:23 -060062AS_IF([test "x$YAML_GEN" == "x"], [YAML_GEN="example.yaml"])
63FRUGEN="$PYTHON $srcdir/scripts/fru_gen.py -i $YAML_GEN"
64AC_SUBST(FRUGEN)
Deepak Kodihallie8c4ffd2017-02-20 01:20:08 -060065AS_IF([test "x$PROP_YAML" == "x"], [PROP_YAML="extra-properties-example.yaml"])
66PROPGEN="$PYTHON $srcdir/scripts/extra-properties.py -e $PROP_YAML"
67AC_SUBST(PROPGEN)
Deepak Kodihalli92cea962017-01-25 10:50:23 -060068
Matthew Barthce3490e2016-10-18 14:25:10 -050069# Create configured output
70AC_CONFIG_FILES([Makefile])
71AC_OUTPUT