Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([swampd], [1.0], [https://www.google.com]) |
| 4 | AC_LANG([C++]) |
| 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 | |
| 15 | # Python |
| 16 | AM_PATH_PYTHON([2.7], [AC_SUBST([PYTHON], [echo "$PYTHON"])], |
| 17 | [AC_MSG_ERROR([Could not find python-2.7 installed...python-2.7 is required])]) |
| 18 | |
| 19 | # Checks for typedefs, structures, and compiler characteristics. |
| 20 | AX_CXX_COMPILE_STDCXX_14([noext]) |
| 21 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 22 | |
| 23 | # Checks for libraries. |
| 24 | # AC_CHECK_LIB([mapper], [mapper_get_service], ,[AC_MSG_ERROR([Could not find libmapper...openbmc/phosphor-objmgr package required])]) |
| 25 | PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221], [], [AC_MSG_ERROR(["systemd required and not found"])]) |
| 26 | PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus], ,[AC_MSG_ERROR([The openbmc/sdbusplus package is required])]) |
| 27 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging], ,[AC_MSG_ERROR([The openbmc/phosphor-logging package is required])]) |
| 28 | PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces], [], [AC_MSG_ERROR(["phosphor-dbus-interfaces required and not found."])]) |
| 29 | AC_CHECK_HEADER(experimental/any, ,[AC_MSG_ERROR([Could not find experimental/any...libstdc++fs developement package required])]) |
Patrick Venture | 2917247 | 2018-05-10 08:50:35 -0700 | [diff] [blame^] | 30 | PKG_CHECK_MODULES([LIBCONFIGXX], [libconfig++ >= 1.5], ,AC_MSG_ERROR([libconfig++ 1.5 or newer not found.])) |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 31 | |
| 32 | # Checks for library functions. |
| 33 | LT_INIT # Required for systemd linking |
| 34 | |
| 35 | # Check/set gtest specific functions. |
| 36 | AX_PTHREAD([GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=1"],[GTEST_CPPFLAGS="-DGTEST_HAS_PTHREAD=0"]) |
| 37 | AC_SUBST(GTEST_CPPFLAGS) |
| 38 | |
| 39 | AC_ARG_ENABLE([oe-sdk], |
| 40 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 41 | ) |
| 42 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 43 | [Path to the OE SDK SYSROOT]) |
| 44 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 45 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 46 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 47 | ) |
| 48 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 49 | [ |
| 50 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 51 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 52 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 53 | ] |
| 54 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 55 | ) |
| 56 | |
| 57 | AS_IF([test "x$SENSOR_YAML_GEN" == "x"], [SENSOR_YAML_GEN="sensor-example.yaml"]) |
| 58 | SENSORGEN="$PYTHON ${srcdir}/scripts/sensor_gen.py -i $SENSOR_YAML_GEN" |
| 59 | AC_SUBST(SENSORGEN) |
| 60 | |
| 61 | AS_IF([test "x$PID_YAML_GEN" == "x"], [PID_YAML_GEN="pid-example.yaml"]) |
| 62 | PIDGEN="$PYTHON ${srcdir}/scripts/pid_gen.py -i $PID_YAML_GEN" |
| 63 | AC_SUBST(PIDGEN) |
| 64 | |
| 65 | AS_IF([test "x$ZONE_YAML_GEN" == "x"], [ZONE_YAML_GEN="zone-example.yaml"]) |
| 66 | ZONEGEN="$PYTHON ${srcdir}/scripts/zone_gen.py -i $ZONE_YAML_GEN" |
| 67 | AC_SUBST(ZONEGEN) |
| 68 | |
| 69 | # Create configured output |
| 70 | AC_CONFIG_FILES([Makefile]) |
| 71 | AC_OUTPUT |