Jeremy Kerr | b2ef62b | 2019-05-28 09:38:25 +0800 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
Andrew Jeffery | e750cbc | 2022-02-17 17:02:18 +1030 | [diff] [blame] | 3 | AC_INIT([libmctp], 0.11, [https://github.com/openbmc/libmctp/issues]) |
Jeremy Kerr | b2ef62b | 2019-05-28 09:38:25 +0800 | [diff] [blame] | 4 | AC_CONFIG_HEADERS([config.h]) |
| 5 | AC_CONFIG_MACRO_DIRS([m4]) |
Andrew Jeffery | d09253f | 2020-02-26 11:00:37 +1030 | [diff] [blame] | 6 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror -Wno-portability foreign dist-xz]) |
Jeremy Kerr | b2ef62b | 2019-05-28 09:38:25 +0800 | [diff] [blame] | 7 | AM_SILENT_RULES([yes]) |
| 8 | |
| 9 | # Checks for programs. |
| 10 | AC_PROG_CC |
| 11 | AM_PROG_AR |
| 12 | AC_PROG_INSTALL |
| 13 | AC_PROG_MAKE_SET |
| 14 | |
| 15 | # libtool init |
| 16 | LT_INIT |
| 17 | |
Andrew Jeffery | 3286f17 | 2020-03-17 23:04:13 +1030 | [diff] [blame] | 18 | AC_CHECK_HEADERS_ONCE([endian.h]) |
Andrew Jeffery | 7b08721 | 2020-03-17 23:09:43 +1030 | [diff] [blame] | 19 | AC_CHECK_HEADERS_ONCE([unistd.h fcntl.h]) |
Andrew Jeffery | 3286f17 | 2020-03-17 23:04:13 +1030 | [diff] [blame] | 20 | |
Jeremy Kerr | 80971f8 | 2019-08-29 09:57:58 +0530 | [diff] [blame] | 21 | # pkg-config |
| 22 | PKG_PROG_PKG_CONFIG |
| 23 | PKG_INSTALLDIR |
Andrew Jeffery | 745b1d1 | 2021-05-11 11:14:53 +0930 | [diff] [blame] | 24 | PKG_CHECK_MODULES(udev, |
| 25 | udev, |
Andrew Jeffery | 9f5b47a | 2021-05-11 15:05:14 +0930 | [diff] [blame] | 26 | [PKG_CHECK_VAR(udevdir, udev, udevdir)], |
Andrew Jeffery | 745b1d1 | 2021-05-11 11:14:53 +0930 | [diff] [blame] | 27 | []) |
| 28 | |
Andrew Jeffery | 9f5b47a | 2021-05-11 15:05:14 +0930 | [diff] [blame] | 29 | AC_SUBST([udevrulesdir], [$udevdir/rules.d]) |
| 30 | |
Andrew Jeffery | cad4730 | 2021-08-20 21:37:57 +0930 | [diff] [blame] | 31 | AC_ARG_ENABLE([capture], |
| 32 | [AC_HELP_STRING([--enable-capture], |
| 33 | [Use libpcap to capture messages and packets])]) |
| 34 | AS_IF([test "x$enable_capture" = "xyes"], |
| 35 | [PKG_CHECK_MODULES(pcap, libpcap, |
| 36 | [AC_DEFINE([HAVE_PCAP], [1], |
| 37 | [Define to 1 if you have libpcap])], |
| 38 | [])], |
| 39 | []) |
| 40 | AC_SUBST([pcap_CFLAGS]) |
| 41 | AC_SUBST([pcap_LIBS]) |
| 42 | AM_CONDITIONAL([HAVE_PCAP], [test "x$enable_capture" = "xyes"]) |
| 43 | |
Andrew Jeffery | 745b1d1 | 2021-05-11 11:14:53 +0930 | [diff] [blame] | 44 | AC_ARG_ENABLE([astlpc-raw-kcs], |
| 45 | [AS_HELP_STRING([--enable-astlpc-raw-kcs], |
| 46 | [Use udev rules to symlink raw-kcs device nodes for the astlpc binding])]) |
Andrew Jeffery | 9f5b47a | 2021-05-11 15:05:14 +0930 | [diff] [blame] | 47 | AM_CONDITIONAL([LIBMCTP_UDEV_RAW_KCS], [test -n "$udevdir" -a "x$enable_astlpc_raw_kcs" = "xyes"]) |
Andrew Jeffery | 745b1d1 | 2021-05-11 11:14:53 +0930 | [diff] [blame] | 48 | |
Xiaochao Ma | 1e496c8 | 2020-01-16 17:19:11 +0800 | [diff] [blame] | 49 | AC_ARG_WITH([systemdsystemunitdir], |
| 50 | [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files])], |
| 51 | [], |
| 52 | [with_systemdsystemunitdir=auto] |
| 53 | ) |
| 54 | AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitdir" = "xauto"], |
| 55 | [def_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd) |
| 56 | AS_IF([test "x$def_systemdsystemunitdir" = "x"], |
| 57 | [AS_IF([test "x$with_systemdsystemunitdir" = "xyes"], |
| 58 | [AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])] |
| 59 | ) |
| 60 | with_systemdsystemunitdir=no], |
| 61 | [with_systemdsystemunitdir="$def_systemdsystemunitdir"] |
| 62 | )] |
| 63 | ) |
Andrew Jeffery | d4103f8 | 2021-06-16 14:39:36 +0930 | [diff] [blame] | 64 | |
| 65 | AC_CHECK_HEADER([systemd/sd-daemon.h], |
| 66 | [AC_DEFINE([HAVE_SYSTEMD_SD_DAEMON_H], [1], |
| 67 | [Define to 1 if you have <systemd/sd-daemon.h>.])], |
| 68 | []) |
| 69 | AC_CHECK_LIB([systemd], [sd_listen_fds]) |
Xiaochao Ma | 1e496c8 | 2020-01-16 17:19:11 +0800 | [diff] [blame] | 70 | AS_IF([test "x$with_systemdsystemunitdir" != "xno"], |
| 71 | [AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])] |
| 72 | ) |
| 73 | AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemdsystemunitdir" != "xno"]) |
Jeremy Kerr | 80971f8 | 2019-08-29 09:57:58 +0530 | [diff] [blame] | 74 | |
Andrew Jeffery | 7b08721 | 2020-03-17 23:09:43 +1030 | [diff] [blame] | 75 | AC_ARG_WITH([syslog], |
| 76 | [AS_HELP_STRING([--with-syslog], [Support logging to syslog])], |
| 77 | [], |
| 78 | [with_syslog=check]) |
| 79 | |
| 80 | AS_IF([test "x$with_syslog" != "xno"], |
| 81 | [AC_COMPILE_IFELSE( |
| 82 | [AC_LANG_PROGRAM([[ |
| 83 | #include <stdarg.h> |
| 84 | #include <syslog.h> |
| 85 | |
| 86 | void check_vsyslog(int level, const char *fmt, ...) |
| 87 | { |
| 88 | va_list ap; |
| 89 | va_start(ap, fmt); |
| 90 | vsyslog(0, fmt, ap); |
| 91 | va_end(ap); |
| 92 | } |
| 93 | ]],[[ |
| 94 | check_vsyslog(0, "\n"); |
| 95 | ]])], |
| 96 | [AC_DEFINE([MCTP_HAVE_SYSLOG], [1], [Define to enable syslog])], |
| 97 | [])], |
| 98 | []) |
| 99 | |
| 100 | AC_ARG_WITH([fileio], |
| 101 | [AS_HELP_STRING([--with-fileio], |
| 102 | [Support interfaces based on file-descriptors])], |
| 103 | [], |
| 104 | [with_fileio=check]) |
| 105 | |
| 106 | AS_IF([test "x$with_fileio" = "xcheck"], |
| 107 | [AC_DEFINE([MCTP_HAVE_FILEIO], [(HAVE_UNISTD_H && HAVE_FCNTL_H)], |
| 108 | [Support interfaces based on file-descriptors])], |
| 109 | [AS_IF([test "x$with_fileio" = "xyes"], |
| 110 | [AC_DEFINE([MCTP_HAVE_FILEIO], [1], |
| 111 | [Support interfaces based on file-descriptors])], |
| 112 | [])]) |
| 113 | |
| 114 | AC_ARG_WITH([stdio], |
| 115 | [AS_HELP_STRING([--with-stdio], [Support logging to stdio])], |
| 116 | [], |
| 117 | [with_stdio=check]) |
| 118 | |
| 119 | AS_IF([test "x$with_stdio" != "xno"], |
| 120 | [AC_COMPILE_IFELSE( |
| 121 | [AC_LANG_PROGRAM([[ |
| 122 | #include <stdarg.h> |
| 123 | #include <stdio.h> |
| 124 | void check_vprintf(const char *fmt, ...) |
| 125 | { |
| 126 | va_list ap; |
| 127 | va_start(ap, fmt); |
| 128 | vprintf(fmt, ap); |
| 129 | va_end(ap); |
| 130 | } |
| 131 | ]],[[ |
| 132 | check_vprintf("\n"); |
| 133 | ]])], |
| 134 | [AC_DEFINE([MCTP_HAVE_STDIO], [1], [Define to enable stdio functions])], |
| 135 | [])], |
| 136 | []) |
| 137 | |
| 138 | AC_ARG_WITH([default-alloc], |
| 139 | [AS_HELP_STRING([--with-default-alloc], |
| 140 | [Use libc malloc and free for heap memory])], |
| 141 | [], |
| 142 | [with_default_alloc=check]) |
| 143 | |
| 144 | AS_IF([test "x$with_default_alloc" != "xno"], |
| 145 | [AC_LINK_IFELSE( |
| 146 | [AC_LANG_PROGRAM([[ |
| 147 | #include <stdlib.h> |
| 148 | ]], [[ |
| 149 | free(malloc(4096)); |
| 150 | ]])], |
| 151 | [AC_DEFINE([MCTP_DEFAULT_ALLOC], |
| 152 | [1], |
| 153 | [Define to use libc malloc and free for heap memory])], |
| 154 | [])], |
| 155 | []) |
Jeremy Kerr | c7e764a | 2019-05-28 16:49:03 +0800 | [diff] [blame] | 156 | |
| 157 | # Enable all bindings. AC_ARG_ENABLE in future. |
Jeremy Kerr | b2ef62b | 2019-05-28 09:38:25 +0800 | [diff] [blame] | 158 | AM_CONDITIONAL([LIBMCTP_BINDING_serial], [true]) |
| 159 | AM_CONDITIONAL([LIBMCTP_BINDING_astlpc], [true]) |
| 160 | |
Andrew Jeffery | 8d53b1c | 2020-05-29 08:43:04 +0930 | [diff] [blame] | 161 | # Check for valgrind |
| 162 | AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no]) |
| 163 | m4_foreach([vgtool], [valgrind_tool_list], |
| 164 | [AX_VALGRIND_DFLT(vgtool, [off])]) |
| 165 | AX_VALGRIND_DFLT([memcheck], [on]) |
| 166 | AX_VALGRIND_CHECK |
| 167 | AM_EXTRA_RECURSIVE_TARGETS([check-valgrind]) |
| 168 | m4_foreach([vgtool], [valgrind_tool_list], |
| 169 | [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)]) |
| 170 | |
Andrew Jeffery | 7344ac2 | 2020-01-10 16:13:07 +1030 | [diff] [blame] | 171 | AX_CODE_COVERAGE |
| 172 | m4_ifdef([_AX_CODE_COVERAGE_RULES], |
| 173 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])], |
| 174 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])]) |
| 175 | AX_ADD_AM_MACRO_STATIC([]) |
| 176 | |
Andrew Jeffery | 745b1d1 | 2021-05-11 11:14:53 +0930 | [diff] [blame] | 177 | AC_CONFIG_FILES([Makefile libmctp.pc udev/rules.d/mctp0-raw-kcs3.rules |
| 178 | udev/rules.d/mctp0-raw-kcs4.rules]) |
Jeremy Kerr | b2ef62b | 2019-05-28 09:38:25 +0800 | [diff] [blame] | 179 | AC_OUTPUT |