blob: 47d3a271d044e8385bf3ce0242f2557e1ba38c1d [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])
Patrick Venture8e19f5b2018-10-29 18:30:08 -07007AC_LANG([C++])
Matthew Barthce3490e2016-10-18 14:25:10 -05008
9# Checks for programs.
10AC_PROG_CXX
11AC_PROG_CC
12AM_PROG_AR
13AC_PROG_INSTALL
14AC_PROG_MAKE_SET
15AC_PROG_LN_S
Deepak Kodihalli92cea962017-01-25 10:50:23 -060016AM_PATH_PYTHON([2.7],
17 [AC_SUBST([PYTHON], [echo "$PYTHON"])],
18 [AC_MSG_ERROR([Could not find python-2.7 installed...python-2.7 is required])])
Matthew Barthce3490e2016-10-18 14:25:10 -050019
20# Checks for libraries.
Patrick Williams9149a772017-06-01 15:39:40 -050021AC_CHECK_LIB([mapper], [mapper_get_service],,\
22 [AC_MSG_ERROR([Could not find libmapper: phosphor-objmgr package required])])
Matthew Barthce3490e2016-10-18 14:25:10 -050023PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221])
Deepak Kodihalli61845fd2017-02-16 08:09:03 -060024PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus],,\
Patrick Williams9149a772017-06-01 15:39:40 -050025 [AC_MSG_ERROR([Requires sdbusplus package.])])
Patrick Ventured57cd012018-10-16 19:46:24 -070026PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],,\
27 [AC_MSG_ERROR([The openbmc/phosphor-logging package is required])])
Matthew Barthce3490e2016-10-18 14:25:10 -050028
29# Checks for header files.
30AC_CHECK_HEADER(systemd/sd-bus.h, ,[AC_MSG_ERROR([Could not find systemd/sd-bus.h...systemd development package required])])
31AC_CHECK_HEADER(host-ipmid/ipmid-api.h, ,[AC_MSG_ERROR([Could not find host-ipmid/ipmid-api.h...host-ipmid package required])])
32
33# Checks for typedefs, structures, and compiler characteristics.
Vernon Mauery5fcff672018-10-04 10:38:00 -070034AX_CXX_COMPILE_STDCXX_17([noext])
Matthew Barthce3490e2016-10-18 14:25:10 -050035AX_APPEND_COMPILE_FLAGS([-flto -fPIC -Wall -Werror], [CXXFLAGS])
36AX_APPEND_COMPILE_FLAGS([-flto -fPIC -Wall -Werror], [CFLAGS])
37
38# Checks for library functions.
39LT_INIT([shared])
40
41# Check/set gtest specific functions.
42AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"])
43AC_SUBST(GTEST_CPPFLAGS)
44
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)
48AC_ARG_VAR(OECORE_TARGET_SYSROOT,
49 [Path to the OE SDK SYSROOT])
50AS_IF([test "x$enable_oe_sdk" == "xyes"],
51 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
52 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
53 )
54 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
55 [
56 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
57 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
58 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
59 ]
60 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
61)
62
Deepak Kodihalli92cea962017-01-25 10:50:23 -060063AS_IF([test "x$YAML_GEN" == "x"], [YAML_GEN="example.yaml"])
64FRUGEN="$PYTHON $srcdir/scripts/fru_gen.py -i $YAML_GEN"
65AC_SUBST(FRUGEN)
Deepak Kodihallie8c4ffd2017-02-20 01:20:08 -060066AS_IF([test "x$PROP_YAML" == "x"], [PROP_YAML="extra-properties-example.yaml"])
67PROPGEN="$PYTHON $srcdir/scripts/extra-properties.py -e $PROP_YAML"
68AC_SUBST(PROPGEN)
Deepak Kodihalli92cea962017-01-25 10:50:23 -060069
Matthew Barthce3490e2016-10-18 14:25:10 -050070# Create configured output
71AC_CONFIG_FILES([Makefile])
72AC_OUTPUT