Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([phosphor-inventory-manager], [1.0], [https://github.com/openbmc/phosphor-inventory-manager/issues]) |
Brad Bishop | aa7e6bf | 2016-11-09 21:06:14 -0500 | [diff] [blame] | 4 | AC_LANG([C++]) |
Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 5 | AC_CONFIG_HEADERS([config.h]) |
| 6 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz]) |
| 7 | AM_SILENT_RULES([yes]) |
| 8 | |
| 9 | # Checks for programs. |
| 10 | AC_PROG_CXX |
| 11 | AM_PROG_AR |
| 12 | AC_PROG_INSTALL |
| 13 | AC_PROG_MAKE_SET |
| 14 | |
Brad Bishop | 49aefb3 | 2016-10-19 11:54:14 -0400 | [diff] [blame] | 15 | # Checks for libraries. |
| 16 | PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221]) |
| 17 | |
Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 18 | # Checks for typedefs, structures, and compiler characteristics. |
| 19 | AX_CXX_COMPILE_STDCXX_14([noext]) |
| 20 | AX_APPEND_COMPILE_FLAGS([-fpic -Wall -Werror], [CXXFLAGS]) |
| 21 | |
Brad Bishop | aa7e6bf | 2016-11-09 21:06:14 -0500 | [diff] [blame] | 22 | # Checks for header files. |
| 23 | AC_CHECK_HEADER(systemd/sd-bus.h, ,[AC_MSG_ERROR([Could not find systemd/sd-bus.h...systemd developement package required])]) |
| 24 | AC_CHECK_HEADER(sdbusplus/server.hpp, ,[AC_MSG_ERROR([Could not find sdbusplus/server.hpp...sdbusplus developement package required])]) |
| 25 | |
Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 26 | # Checks for library functions. |
| 27 | LT_INIT # Removes 'unrecognized options: --with-libtool-sysroot' |
Brad Bishop | b9fa433 | 2016-10-31 13:40:47 -0500 | [diff] [blame] | 28 | # Check/set gtest specific functions. |
| 29 | AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"]) |
| 30 | AC_SUBST(GTEST_CPPFLAGS) |
| 31 | |
| 32 | AC_ARG_ENABLE([oe-sdk], |
| 33 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 34 | ) |
| 35 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 36 | [Path to the OE SDK SYSROOT]) |
| 37 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 38 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 39 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 40 | ) |
| 41 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 42 | [ |
| 43 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 44 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 45 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 46 | ] |
| 47 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 48 | ) |
Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 49 | |
Brad Bishop | 49aefb3 | 2016-10-19 11:54:14 -0400 | [diff] [blame] | 50 | AC_ARG_VAR(BUSNAME, [The DBus busname to own.]) |
| 51 | AC_ARG_VAR(INVENTORY_ROOT, [The DBus inventory namespace root.]) |
| 52 | AC_ARG_VAR(IFACE, [The manager DBus interface.]) |
| 53 | AS_IF([test "x$BUSNAME" == "x"], [BUSNAME="xyz.openbmc_project.Inventory.Manager"]) |
| 54 | AS_IF([test "x$INVENTORY_ROOT" == "x"], [INVENTORY_ROOT="/xyz/openbmc_project/Inventory"]) |
| 55 | AS_IF([test "x$IFACE" == "x"], [IFACE="xyz.openbmc_project.Inventory.Manager"]) |
| 56 | AC_DEFINE_UNQUOTED([BUSNAME], ["$BUSNAME"], [The DBus busname to own.]) |
| 57 | AC_DEFINE_UNQUOTED([INVENTORY_ROOT], ["$INVENTORY_ROOT"], [The DBus inventory namespace root.]) |
| 58 | AC_DEFINE_UNQUOTED([IFACE], ["$IFACE"], [The manager DBus interface.]) |
Brad Bishop | 64d994a | 2016-10-31 10:24:27 -0500 | [diff] [blame] | 59 | AC_ARG_ENABLE([example], |
| 60 | AS_HELP_STRING([--enable-example], [Enable example configuration.])) |
| 61 | AM_CONDITIONAL([EXAMPLE], [test x$enable_example = xyes]) |
Brad Bishop | 49aefb3 | 2016-10-19 11:54:14 -0400 | [diff] [blame] | 62 | |
Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 63 | # Create configured output |
Brad Bishop | 49aefb3 | 2016-10-19 11:54:14 -0400 | [diff] [blame] | 64 | AC_CONFIG_FILES([Makefile test/Makefile]) |
Brad Bishop | 73b776b | 2016-10-19 07:50:28 -0400 | [diff] [blame] | 65 | AC_OUTPUT |