blob: 739ec376f2c3eab6063943342ffc69efed2774a5 [file] [log] [blame]
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -06001AC_PREREQ([2.69])
2AC_INIT([openpower-vpd-parser], [1.0], [https://github.com/openbmc/openpower-vpd-parser/issues])
3
4AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
5AM_SILENT_RULES([yes])
Patrick Venture6c830e92018-10-29 19:02:29 -07006AC_LANG([C++])
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -06007
8# Checks for programs
9AC_PROG_CXX
10AM_PROG_AR
11AC_PROG_INSTALL
12AC_PROG_MAKE_SET
Santosh Puranik3d7b4fe2020-04-02 23:27:22 +053013AM_PATH_PYTHON([3],
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -060014 [AC_SUBST([PYTHON], [echo "$PYTHON"])],
Santosh Puranik3d7b4fe2020-04-02 23:27:22 +053015 [AC_MSG_ERROR([Could not find python-3 installed...python-3 is required])])
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -060016
Patrick Venture1bdf22f2019-02-13 15:09:17 -080017PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus])
18PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
Deepak Kodihalliae7b5452017-02-06 05:05:56 -060019
Gunnar Millsb29fb682017-10-25 16:23:31 -050020# Suppress the --with-libtool-sysroot error
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -060021LT_INIT
22
23# Checks for typedefs, structures, and compiler characteristics.
Vernon Mauery6e3c2b72018-10-04 09:17:52 -070024AX_CXX_COMPILE_STDCXX_17([noext])
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -060025AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
26
27# Test cases require SDK so only build if we're told to (and SDK is available)
28AC_ARG_ENABLE([oe-sdk],
29 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
30)
31AC_ARG_VAR(OECORE_TARGET_SYSROOT,
32 [Path to the OE SDK SYSROOT])
33AS_IF([test "x$enable_oe_sdk" == "xyes"],
34 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
35 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
36 )
37 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
38 [
39 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
40 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
41 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
42 ]
43 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
44)
45
Deepak Kodihallicd6d2412017-02-06 07:35:32 -060046AS_IF([test "x$FRU_YAML" == "x"], [FRU_YAML="writefru.yaml"])
47FRUGEN="$PYTHON $srcdir/writefru.py -i $FRU_YAML"
48AC_SUBST(FRUGEN)
Deepak Kodihallic7b2a712017-02-17 00:58:39 -060049AS_IF([test "x$PROP_YAML" == "x"], [PROP_YAML="extra-properties-example.yaml"])
50PROPGEN="$PYTHON $srcdir/extra-properties.py -e $PROP_YAML"
51AC_SUBST(PROPGEN)
Deepak Kodihallicd6d2412017-02-06 07:35:32 -060052
Alpana Kumari26a74af2019-09-10 23:53:58 -050053# Setup option for IBM VPD formats.
54AC_ARG_ENABLE([ibm-parser],
55 AS_HELP_STRING([--enable-ibm-parser ],
56 [Enable IBM IPZ and Keyword format VPD parser support.
57 ]))
58
59AM_CONDITIONAL([IBM_PARSER], [test "x$enable_ibm_parser" = "xyes"])
60AS_IF([test "x$enable_ibm_parser" == "xyes"], [
61# Check necessary header files
62 AC_CHECK_HEADER(
63 [CLI/CLI.hpp],
64 [],
65 [AC_MSG_ERROR([Could not find CLI11 CLI.hpp])]
PriyangaRamasamy1f0b1e62020-02-20 20:48:25 +053066)
Alpana Kumari26a74af2019-09-10 23:53:58 -050067 AC_CHECK_HEADER(
68 [nlohmann/json.hpp],
69 [],
70 [AC_MSG_ERROR([Could not find nlohmann/json.hpp. Require nlohmann/json package])]
71 )
72 AX_APPEND_COMPILE_FLAGS([-DIPZ_PARSER], [CXXFLAGS])
73 AC_DEFINE(INVENTORY_JSON, "/usr/share/vpd/vpd_inventory.json", [JSON file that defines inventory blueprint])
74 ])
PriyangaRamasamy1f0b1e62020-02-20 20:48:25 +053075 AC_DEFINE(INVENTORY_PATH, "/xyz/openbmc_project/inventory", [Prefix for inventory D-Bus objects])
76 AC_DEFINE(INVENTORY_MANAGER_SERVICE, "xyz.openbmc_project.Inventory.Manager", [Inventory manager service])
Alpana Kumari26a74af2019-09-10 23:53:58 -050077
78# Check/set gtest specific functions.
79AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"])
80AC_SUBST(GTEST_CPPFLAGS)
81
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053082# Configure option to enable debug information for keyword VPD parser
83AC_ARG_ENABLE([debug-kw-vpd],
84 AS_HELP_STRING([--enable-debug-kw-vpd ],
85 [Debug statements for Keyword VPD Parser .
86 ]))
87AS_IF([ test "$enable_debug_kw_vpd" = "yes"],
88 [
89 AC_MSG_NOTICE([Enabling debug information for keyword vpd parser application])
90 kw_vpd_debug_flags=-DDEBUG_KW_VPD
91 AC_SUBST([KW_VPD_DEBUG_FLAGS], [$kw_vpd_debug_flags])
92 ]
93 )
94
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -060095AC_CONFIG_HEADERS([config.h])
Deepak Kodihalli901c5d92016-11-30 05:19:45 -060096AC_CONFIG_FILES([Makefile test/Makefile])
Deepak Kodihalli2bba75d2016-11-30 00:46:49 -060097AC_OUTPUT