| AC_PREREQ([2.69]) |
| AC_INIT([phosphor-state-manager], [1.0], [https://github.com/openbmc/phosphor-state-manager/issues]) |
| AC_LANG([C++]) |
| AC_CONFIG_HEADERS([config.h]) |
| AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz]) |
| AM_SILENT_RULES([yes]) |
| |
| # Checks for programs |
| AC_PROG_CXX |
| AC_PROG_INSTALL #Checks/sets the install variable to be used |
| AC_PROG_MAKE_SET |
| |
| # Check for libraries |
| PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221]) |
| |
| # Checks for typedefs, structures, and compiler characteristics. |
| AX_CXX_COMPILE_STDCXX_14([noext]) |
| AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| |
| AC_ARG_VAR(BUSNAME, [The Dbus busname to own]) |
| AS_IF([test "x$BUSNAME" == "x"], [BUSNAME="xyz.openbmc_project.State.Host"]) |
| AC_DEFINE_UNQUOTED([BUSNAME], ["$BUSNAME"], [The DBus busname to own]) |
| |
| AC_ARG_VAR(OBJPATH, [The host state manager Dbus root]) |
| AS_IF([test "x$OBJPATH" == "x"], [OBJPATH="/xyz/openbmc_project/state/host"]) |
| AC_DEFINE_UNQUOTED([OBJPATH], ["$OBJPATH"], [The host state manager Dbus root]) |
| |
| # Check for header files. |
| AC_CHECK_HEADER(systemd/sd-bus.h, ,[AC_MSG_ERROR([Could not find systemd/sd-bus.h...systemd developement package required])]) |
| AC_CHECK_HEADER(sdbusplus/server.hpp, ,[AC_MSG_ERROR([Could not find sdbusplus/server.hpp...openbmc/sdbusplus package required])]) |
| AC_CHECK_HEADER(log.hpp, ,[AC_MSG_ERROR([Could not find log.hpp...openbmc/phosphor-logging package required])]) |
| |
| |
| AC_CONFIG_FILES([Makefile]) |
| AC_OUTPUT |