blob: b292adf8766ebd8daf3a72293a7e3b87e1f35e9a [file] [log] [blame]
Matthew Barth3cff7ed2016-07-27 14:50:51 -05001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-host-ipmid], [1.0], [https://github.com/openbmc/phosphor-host-ipmid/issues])
4AC_CONFIG_HEADERS([config.h])
5AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
6AM_PROG_AR()
7
8# Checks for programs.
9AC_PROG_CXX
10AX_CXX_COMPILE_STDCXX(14, [noext])
11AC_PROG_CC
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14
15# Checks for libraries.
16AC_CHECK_LIB([mapper], [mapper_get_service])
17PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221])
18
19# Checks for header files.
20AC_CHECK_HEADER(systemd/sd-bus.h, ,[AC_MSG_ERROR([Could not find systemd/sd-bus.h...systemd developement package required])])
21
22# Checks for typedefs, structures, and compiler characteristics.
23
24# Checks for library functions.
25LT_INIT
26LT_LIB_DLLOAD
27AC_ENABLE_SHARED
28AC_DISABLE_STATIC
29
30AC_CONFIG_FILES([Makefile])
31AC_OUTPUT