Commit c6bb8049 authored by Geoff Simmons's avatar Geoff Simmons

Set version 4.1, and require Varnish versions 4.1.x or 5.0.0.

parent bdada624
Pipeline #140 skipped
...@@ -9,8 +9,8 @@ Tracking Log Reader demon ...@@ -9,8 +9,8 @@ Tracking Log Reader demon
------------------------- -------------------------
:Author: Geoffrey Simmons :Author: Geoffrey Simmons
:Date: 2015-05-08 :Date: 2017-03-16
:Version: 4.0 :Version: 4.1
:Manual section: 3 :Manual section: 3
SYNOPSIS SYNOPSIS
...@@ -219,11 +219,11 @@ BUILD/INSTALL ...@@ -219,11 +219,11 @@ BUILD/INSTALL
Requirements Requirements
------------ ------------
Since version 4.0, the tracking reader is compatible with Varnish This version of the tracking reader is compatible with Varnish
4.0.x (and has been tested with Varnish 4.0.3). ``trackrdrd`` is built versions 4.1.x and 5.0.0. ``trackrdrd`` is built against an existing
against an existing Varnish installation on the same host, which in Varnish installation on the same host, which in the standard case can
the standard case can be found with usual settings for the ``PATH`` be found with usual settings for the ``PATH`` environment variable in
environment variable in the ``configure`` step described below. the ``configure`` step described below.
The build requires the following tools/packages: The build requires the following tools/packages:
......
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_COPYRIGHT([Copyright (c) 2012-2015 Otto Gmbh & Co KG]) AC_COPYRIGHT([Copyright (c) 2012-2015 Otto Gmbh & Co KG])
AC_INIT([trackrdrd], [4.0]) AC_INIT([trackrdrd], [4.1])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/trackrdrd.c) AC_CONFIG_SRCDIR(src/trackrdrd.c)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
...@@ -45,9 +45,9 @@ AM_CONDITIONAL(HAVE_RST2MAN, [test "x$RST2MAN" != "xno"]) ...@@ -45,9 +45,9 @@ AM_CONDITIONAL(HAVE_RST2MAN, [test "x$RST2MAN" != "xno"])
# Check for pkg-config # Check for pkg-config
PKG_PROG_PKG_CONFIG PKG_PROG_PKG_CONFIG
PKG_CHECK_MODULES([VARNISH], [varnishapi >= 4.0.0], PKG_CHECK_MODULES([VARNISH], [varnishapi >= 4.1.0 varnishapi <= 5.0.0],
[ac_varnish_pkgdatadir=`$PKG_CONFIG --variable=pkgdatadir varnishapi`], [ac_varnish_pkgdatadir=`$PKG_CONFIG --variable=pkgdatadir varnishapi`],
[AC_MSG_ERROR([Varnish >= 4.0.0 installation is required])]) [AC_MSG_ERROR([Varnish 4.1.x or 5.0.0 installation is required])])
if test "x$ac_varnish_pkgdatadir" = x; then if test "x$ac_varnish_pkgdatadir" = x; then
AC_MSG_ERROR([couldn't get Varnish data dir from pkg-config]) AC_MSG_ERROR([couldn't get Varnish data dir from pkg-config])
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment