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 |
| 11 | AM_PROG_AR |
| 12 | AC_PROG_INSTALL |
| 13 | AC_PROG_MAKE_SET |
| 14 | |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 15 | # Checks for header files. |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 16 | 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] | 17 | AS_IF([test "$HAVE_UAPI_LINUX_LPC_CTRL_H" != ""], |
| 18 | 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]) |
| 19 | 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] | 20 | ) |
| 21 | |
| 22 | # Checks for typedefs, structures, and compiler characteristics. |
| 23 | AX_APPEND_COMPILE_FLAGS([-fpic -Wall], [CFLAGS]) |
| 24 | |
| 25 | # Checks for library functions. |
| 26 | LT_INIT # Removes 'unrecognized options: --with-libtool-sysroot' |
| 27 | |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 28 | AC_ARG_ENABLE([oe-sdk], |
| 29 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 30 | ) |
| 31 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 32 | [Path to the OE SDK SYSROOT]) |
| 33 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 34 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 35 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 36 | ) |
| 37 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 38 | [ |
| 39 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 40 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 41 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 42 | ] |
| 43 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 44 | ) |
| 45 | |
Andrew Jeffery | 65e2162 | 2017-04-12 20:25:31 +0930 | [diff] [blame] | 46 | AX_CODE_COVERAGE |
| 47 | |
Suraj Jitindar Singh | e39c916 | 2017-03-28 10:47:43 +1100 | [diff] [blame] | 48 | PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd, , AC_MSG_ERROR([libsytemd not found])) |
| 49 | AC_SUBST([LIBSYSTEMD_CFLAGS]) |
| 50 | AC_SUBST([LIBSYSTEMD_LIBS]) |
| 51 | |
Andrew Jeffery | 2277804 | 2017-01-13 22:37:26 +1030 | [diff] [blame] | 52 | # Create configured output |
| 53 | AC_CONFIG_FILES([Makefile]) |
| 54 | AC_OUTPUT |