From ae0e96c3f98e57e5988b1621ec4c67d4b27cda4f Mon Sep 17 00:00:00 2001 From: Matthew Barth Date: Fri, 20 Jan 2017 13:54:59 -0600 Subject: Initial fan presence build framework Change-Id: Ic39848e285e776ef198c7a41f20debfa164af644 Signed-off-by: Matthew Barth --- configure.ac | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..ee10e62 --- /dev/null +++ b/configure.ac @@ -0,0 +1,29 @@ +# Initialization +AC_PREREQ([2.69]) +AC_INIT([phosphor-fan-presence], [1.0], +[https://github.com/openbmc/phosphor-fan-presence/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 +AM_PROG_AR +AC_PROG_INSTALL +AC_PROG_MAKE_SET + +# Checks for typedefs, structures, and compiler characteristics. +AX_CXX_COMPILE_STDCXX_14([noext]) +AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) + +# Checks for libraries. +PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221], , +[AC_MSG_ERROR([The systemd development package is required])]) + +# Checks for library functions. +LT_INIT # Required for systemd linking + +# Create configured output +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT -- cgit v1.2.1