| Vishwanatha | 81ee91f | 2016-08-30 17:17:13 +0530 | [diff] [blame^] | 1 | # Initialization | 
 | 2 | AC_PREREQ([2.69]) | 
 | 3 | AC_INIT([phosphor-time-manager], [1.0], [https://github.com/openbmc/phosphor-time-manager/issues]) | 
 | 4 | AC_CONFIG_HEADERS([config.h]) | 
 | 5 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz]) | 
 | 6 |  | 
 | 7 | # Checks for programs. | 
 | 8 | AC_PROG_CXX | 
 | 9 | AX_CXX_COMPILE_STDCXX_14([noext]) | 
 | 10 | AC_PROG_CC | 
 | 11 | AM_PROG_AR | 
 | 12 | AC_PROG_INSTALL | 
 | 13 | AC_PROG_MAKE_SET | 
 | 14 |  | 
 | 15 | # Checks for libraries. | 
 | 16 | AC_CHECK_LIB([mapper], [mapper_get_service]) | 
 | 17 | PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221]) | 
 | 18 |  | 
 | 19 | # Checks for header files. | 
 | 20 | AC_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 | AC_CONFIG_FILES([Makefile]) | 
 | 25 | AC_OUTPUT |