Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
Suraj Jitindar Singh | 8d65bb4 | 2017-05-01 16:05:17 +1000 | [diff] [blame] | 3 | AC_INIT([mboxd], [2.1.0], [https://github.com/openbmc/mboxbridge/issues]) |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 4 | AC_CONFIG_HEADERS([config.h]) |
| 5 | AM_INIT_AUTOMAKE([subdir-objects -Wall foreign dist-xz]) |
| 6 | AM_SILENT_RULES([yes]) |
| 7 | AC_CONFIG_MACRO_DIRS([m4]) |
| 8 | |
| 9 | # Checks for programs. |
| 10 | AC_PROG_CC |
Deepak Kodihalli | b3d88c4 | 2017-04-28 02:20:08 -0500 | [diff] [blame] | 11 | AC_PROG_CXX |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 12 | AM_PROG_AR |
| 13 | AC_PROG_INSTALL |
| 14 | AC_PROG_MAKE_SET |
| 15 | |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 16 | # Checks for header files. |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 17 | AC_CHECK_HEADER(linux/aspeed-lpc-ctrl.h,[HAVE_UAPI_LINUX_LPC_CTRL_H=""],[HAVE_UAPI_LINUX_LPC_CTRL_H="-I linux/aspeed-lpc-ctrl.h"]) |
Andrew Jeffery | fd09c85 | 2017-05-03 09:01:12 +0930 | [diff] [blame] | 18 | AS_IF([test "$HAVE_UAPI_LINUX_LPC_CTRL_H" != ""], |
| 19 | AC_MSG_WARN([Could not find linux/aspeed-lpc-ctrl.h: Attempting to download locally for building from https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git/plain/include/uapi/linux/aspeed-lpc-ctrl.h?h=char-misc-next]) |
| 20 | AC_SUBST([BT_BMC_DL],[`test ! -f linux/aspeed-lpc-ctrl.h && mkdir -p linux && wget --quiet https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git/plain/include/uapi/linux/aspeed-lpc-ctrl.h?h=char-misc-next -O linux/aspeed-lpc-ctrl.h`]) |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 21 | ) |
| 22 | |
| 23 | # Checks for typedefs, structures, and compiler characteristics. |
Deepak Kodihalli | b3d88c4 | 2017-04-28 02:20:08 -0500 | [diff] [blame] | 24 | AX_CXX_COMPILE_STDCXX_14([noext]) |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 25 | AX_APPEND_COMPILE_FLAGS([-fpic -Wall], [CFLAGS]) |
Ratan Gupta | b49e1b8 | 2017-05-05 15:24:19 +0530 | [diff] [blame] | 26 | AX_APPEND_COMPILE_FLAGS([-fpic -Wall], [CXXFLAGS]) |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 27 | |
Ratan Gupta | b032758 | 2017-06-28 18:26:14 +0530 | [diff] [blame] | 28 | PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus],,\ |
| 29 | AC_MSG_ERROR(["Requires sdbusplus package."])) |
| 30 | |
| 31 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],,\ |
| 32 | AC_MSG_ERROR(["Requires phosphor-logging package."])) |
| 33 | |
| 34 | AX_PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [],[phosphor-dbus-interfaces],\ |
| 35 | [], [AC_MSG_ERROR(["phosphor-dbus-interfaces required and not found."])]) |
| 36 | |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 37 | # Checks for library functions. |
| 38 | LT_INIT # Removes 'unrecognized options: --with-libtool-sysroot' |
| 39 | |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 40 | AC_ARG_ENABLE([oe-sdk], |
| 41 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 42 | ) |
| 43 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 44 | [Path to the OE SDK SYSROOT]) |
| 45 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 46 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 47 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 48 | ) |
| 49 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 50 | [ |
| 51 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 52 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 53 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 54 | ] |
| 55 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 56 | ) |
| 57 | |
Ratan Gupta | b49e1b8 | 2017-05-05 15:24:19 +0530 | [diff] [blame] | 58 | AC_ARG_ENABLE([virtual-pnor], |
| 59 | AS_HELP_STRING([--enable-virtual-pnor], [Turn on virtual pnor]) |
| 60 | ) |
| 61 | AS_IF([test "x$enable_virtual_pnor" == "xno"], |
| 62 | [ |
| 63 | AM_CONDITIONAL(VIRTUAL_PNOR_ENABLED, false) |
| 64 | ], |
| 65 | [ |
| 66 | AM_CONDITIONAL(VIRTUAL_PNOR_ENABLED, true) |
| 67 | AX_APPEND_COMPILE_FLAGS([-DVIRTUAL_PNOR_ENABLED], [CXXFLAGS]) |
| 68 | AX_APPEND_COMPILE_FLAGS([-DVIRTUAL_PNOR_ENABLED], [CFLAGS]) |
| 69 | ] |
| 70 | ) |
| 71 | |
Andrew Jeffery | 65e2162 | 2017-04-12 20:25:31 +0930 | [diff] [blame] | 72 | AX_CODE_COVERAGE |
| 73 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 74 | PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd, , AC_MSG_ERROR([libsytemd not found])) |
| 75 | AC_SUBST([LIBSYSTEMD_CFLAGS]) |
| 76 | AC_SUBST([LIBSYSTEMD_LIBS]) |
| 77 | |
Deepak Kodihalli | 393821d | 2017-04-28 04:44:38 -0500 | [diff] [blame] | 78 | AC_DEFINE(PARTITION_TOC_FILE, "pnor.toc", [The basename of the PNOR Table of contents file.]) |
Ratan Gupta | c0ef987 | 2017-06-06 14:31:37 +0530 | [diff] [blame] | 79 | AC_DEFINE(PARTITION_FILES_RO_LOC, "/var/lib/phosphor-software-manager/pnor/ro", [The path to the directory containing PNOR read only partition files.]) |
| 80 | AC_DEFINE(PARTITION_FILES_RW_LOC, "/var/lib/phosphor-software-manager/pnor/rw", [The path to the directory containing PNOR read write partition files.]) |
| 81 | AC_DEFINE(PARTITION_FILES_PRSV_LOC, "/var/lib/phosphor-software-manager/pnor/prsv", [The path to the directory containing PNOR preserve partition files.]) |
Adriana Kobylak | c71dfd7 | 2017-07-22 11:10:43 -0500 | [diff] [blame] | 82 | AC_DEFINE(PARTITION_FILES_PATCH_LOC, "/usr/local/share/pnor", [The path to the directory containing PNOR patch partition files.]) |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 83 | # Create configured output |
| 84 | AC_CONFIG_FILES([Makefile]) |
| 85 | AC_OUTPUT |