mirror of
https://github.com/clearlinux/tallow.git
synced 2026-08-28 00:46:03 +00:00
76a59df0f1
Before, most rules would block on the 3rd rule hit, with this, it's 4, which means 1 extra failure before a 1hr block is started and this is a bit more sympathetic towards `typo` failures.
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.64])
|
|
AC_INIT([tallow], [9], [auke-jan.h.kok@intel.com])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
|
|
PKG_CHECK_MODULES(PCRE, libpcre)
|
|
PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd,, [PKG_CHECK_MODULES(LIBSYSTEMD, libsystemd-journal)])
|
|
AC_SUBST(LIBSYSTEMD_CFLAGS)
|
|
AC_SUBST(LIBSYSTEMD_LIBS)
|
|
AC_SUBST(LIBSYSTEMD_JOURNAL_CFLAGS)
|
|
AC_SUBST(LIBSYSTEMD_JOURNAL_LIBS)
|
|
|
|
AC_ARG_WITH([systemdsystemunitdir], AC_HELP_STRING([--with-systemdsystemunitdir=DIR],
|
|
[path to systemd system service directory]), [path_systemdsystemunit=${withval}],
|
|
[path_systemdsystemunit="`$PKG_CONFIG --variable=systemdsystemunitdir systemd`"])
|
|
if (test -n "${path_systemdsystemunit}"); then
|
|
SYSTEMD_SYSTEMUNITDIR="${path_systemdsystemunit}"
|
|
AC_SUBST(SYSTEMD_SYSTEMUNITDIR)
|
|
fi
|
|
|
|
AC_CHECK_HEADERS([stdlib.h stdio.h string.h stdarg.h limits.h sys/time.h])
|
|
|
|
AC_OUTPUT([
|
|
tallow.service
|
|
])
|