2019-11-03 21:51:06 +05:30
|
|
|
# Copyright (c) 2018-2019 Joachim Nilsson <troglobit@gmail.com>
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
2019-11-03 21:51:06 +05:30
|
|
|
# This file is part of the sysklogd package, a kernel and system log daemon.
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
2019-11-03 21:51:06 +05:30
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
2019-11-03 21:51:06 +05:30
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
2019-11-03 21:51:06 +05:30
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2018-08-03 01:53:26 +05:30
|
|
|
|
2019-11-15 15:45:23 +05:30
|
|
|
AC_INIT([sysklogd], [2.0], [https://github.com/troglobit/sysklogd/issues],,
|
2019-10-12 22:22:04 +05:30
|
|
|
[https://github.com/troglobit/sysklogd])
|
2019-11-03 20:23:36 +05:30
|
|
|
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects])
|
|
|
|
LT_INIT([pic-only])
|
2018-08-03 01:53:26 +05:30
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
|
2019-11-03 22:00:59 +05:30
|
|
|
AC_CONFIG_MACRO_DIRS([m4])
|
2018-08-03 01:53:26 +05:30
|
|
|
AC_CONFIG_SRCDIR([src/syslogd.c])
|
|
|
|
AC_CONFIG_HEADER([config.h])
|
2019-10-29 15:38:23 +05:30
|
|
|
AC_CONFIG_FILES([Makefile
|
2019-11-05 12:43:55 +05:30
|
|
|
example/Makefile
|
2019-10-29 15:38:23 +05:30
|
|
|
man/Makefile
|
|
|
|
src/Makefile
|
2019-10-31 13:09:09 +05:30
|
|
|
src/libsyslog.pc
|
2019-10-29 15:38:23 +05:30
|
|
|
test/Makefile
|
|
|
|
klogd.service
|
|
|
|
syslogd.service])
|
2018-08-03 01:53:26 +05:30
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_HEADER_STDC
|
|
|
|
|
2018-08-05 22:45:44 +05:30
|
|
|
# Check for required packages
|
|
|
|
PKG_PROG_PKG_CONFIG
|
|
|
|
|
2019-10-25 17:54:35 +05:30
|
|
|
# Check for usually missing API's, which we can replace
|
2019-11-03 01:27:07 +05:30
|
|
|
AC_REPLACE_FUNCS([pidfile strlcpy strlcat utimensat])
|
2019-10-25 17:54:35 +05:30
|
|
|
AC_CONFIG_LIBOBJ_DIR([lib])
|
|
|
|
|
2019-11-04 15:25:52 +05:30
|
|
|
# Check for other library functions
|
|
|
|
AC_CHECK_FUNCS([getprogname strtobytes])
|
|
|
|
|
2019-10-25 17:54:35 +05:30
|
|
|
# Command line options
|
2019-11-12 20:21:33 +05:30
|
|
|
AC_ARG_WITH(klogd,
|
|
|
|
AS_HELP_STRING([--with-klogd], [Build a separate klogd, default: disabled]),
|
|
|
|
[klogd=$withval], [klogd='no'])
|
2018-09-25 13:40:28 +05:30
|
|
|
|
2018-08-03 12:16:04 +05:30
|
|
|
AC_ARG_WITH(klogd-delay,
|
2019-11-13 16:22:15 +05:30
|
|
|
AS_HELP_STRING([--with-klogd-delay=SEC], [Delay before klogd connects to syslogd, default: 0]),
|
2018-08-03 12:16:04 +05:30
|
|
|
[klogd_delay=$withval], [klogd_delay='no'])
|
|
|
|
|
2019-11-12 20:21:33 +05:30
|
|
|
AC_ARG_WITH(suspend-time,
|
2019-11-13 16:22:15 +05:30
|
|
|
AS_HELP_STRING([--with-suspend-time=SEC], [Retry delay for sending to remote, default: 180]),
|
2019-11-12 20:21:33 +05:30
|
|
|
[suspend_time=$withval], [suspend_time='no'])
|
|
|
|
|
2018-08-05 22:45:44 +05:30
|
|
|
AC_ARG_WITH(systemd,
|
|
|
|
[AS_HELP_STRING([--with-systemd=DIR], [Directory for systemd service files])],,
|
|
|
|
[with_systemd=auto])
|
|
|
|
|
2019-11-18 16:38:26 +05:30
|
|
|
AC_ARG_WITH(logger,
|
2019-11-18 22:24:35 +05:30
|
|
|
AS_HELP_STRING([--without-logger], [Build without extended logger tool, default: enabled]),
|
2019-11-18 16:38:26 +05:30
|
|
|
[logger=$withval], [logger='yes'])
|
|
|
|
|
2019-11-12 20:21:33 +05:30
|
|
|
AS_IF([test "x$klogd" != "xno"],
|
|
|
|
with_klogd="yes"
|
|
|
|
AC_DEFINE(KLOGD, 1, [Build with klogd, default: built-in /dev/kmsg support in syslogd]),
|
|
|
|
with_klogd="no")
|
|
|
|
AM_CONDITIONAL([ENABLE_KLOGD], [test "x$with_klogd" != "xno"])
|
2018-09-25 13:40:28 +05:30
|
|
|
|
2018-08-03 12:16:04 +05:30
|
|
|
AS_IF([test "x$klogd_delay" != "xno"],[
|
|
|
|
AS_IF([test "x$klogd_delay" = "xyes"],[
|
|
|
|
AC_MSG_ERROR([Must supply argument])])
|
|
|
|
]
|
2019-11-12 20:21:33 +05:30
|
|
|
AC_DEFINE_UNQUOTED(KLOGD_DELAY, $klogd_delay, [Delay klogd startup N seconds, default: 0]),
|
|
|
|
klogd_delay=0)
|
|
|
|
|
2019-11-18 22:24:35 +05:30
|
|
|
AS_IF([test "x$logger" != "xno"], with_logger="yes", with_logger="no")
|
|
|
|
AM_CONDITIONAL([ENABLE_LOGGER], [test "x$with_logger" != "xno"])
|
|
|
|
|
2019-11-12 20:21:33 +05:30
|
|
|
AS_IF([test "x$suspend_time" != "xno"],[
|
|
|
|
AS_IF([test "x$suspend_time" = "xyes"],[
|
|
|
|
AC_MSG_ERROR([Must supply argument])])
|
|
|
|
]
|
2019-11-13 16:22:15 +05:30
|
|
|
AC_DEFINE_UNQUOTED(INET_SUSPEND_TIME, $suspend_time, [Retry delay for sending to remote syslog servers, default: 180]),
|
2019-11-12 20:21:33 +05:30
|
|
|
suspend_time=180)
|
2018-08-03 12:16:04 +05:30
|
|
|
|
2018-08-05 22:45:44 +05:30
|
|
|
# Check where to install the systemd .service file
|
|
|
|
AS_IF([test "x$with_systemd" = "xyes" -o "x$with_systemd" = "xauto"], [
|
|
|
|
def_systemd=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
|
|
|
|
AS_IF([test "x$def_systemd" = "x"],
|
|
|
|
[AS_IF([test "x$with_systemd" = "xyes"],
|
|
|
|
[AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])])
|
2019-11-18 22:24:35 +05:30
|
|
|
with_systemd=no], [with_systemd="$def_systemd"])])
|
2018-08-05 22:45:44 +05:30
|
|
|
AS_IF([test "x$with_systemd" != "xno"],
|
|
|
|
[AC_SUBST([systemddir], [$with_systemd])])
|
|
|
|
AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemd" != "xno"])
|
|
|
|
|
|
|
|
# Expand $sbindir early, into $SBINDIR, for systemd unit file
|
|
|
|
# NOTE: This does *not* take prefix/exec_prefix override at "make
|
|
|
|
# install" into account, unfortunately.
|
|
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
|
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
SBINDIR=`eval echo $sbindir`
|
|
|
|
SBINDIR=`eval echo $SBINDIR`
|
|
|
|
AC_SUBST(SBINDIR)
|
|
|
|
|
2018-08-03 01:53:26 +05:30
|
|
|
AC_OUTPUT
|
2019-11-12 20:21:33 +05:30
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
|
|
|
|
------------------ Summary ------------------
|
|
|
|
$PACKAGE_NAME version $PACKAGE_VERSION
|
|
|
|
Prefix.........: $prefix
|
|
|
|
Sysconfdir.....: `eval echo $sysconfdir`
|
2019-11-24 23:22:31 +05:30
|
|
|
Runstatedir....: `eval echo $runstatedir`
|
2019-11-12 20:21:33 +05:30
|
|
|
C Compiler.....: $CC $CFLAGS $CPPFLAGS $LDFLAGS $LIBS
|
|
|
|
|
|
|
|
Optional features:
|
|
|
|
klogd..........: $with_klogd
|
|
|
|
klogd delay....: $klogd_delay sec
|
2019-11-18 22:24:35 +05:30
|
|
|
logger.........: $with_logger
|
2019-11-12 20:21:33 +05:30
|
|
|
suspend time...: $suspend_time sec
|
|
|
|
systemd........: $with_systemd
|
|
|
|
|
|
|
|
------------- Compiler version --------------
|
|
|
|
$($CC --version || true)
|
|
|
|
---------------------------------------------
|
|
|
|
|
|
|
|
Check the above options and compile with:
|
|
|
|
${MAKE-make}
|
|
|
|
|
|
|
|
EOF
|