aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rw-r--r--README6
m---------acvmod0
-rw-r--r--configure.ac5
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/atlocal.in4
6 files changed, 16 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index af878fb..be596dd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,14 @@
1Vmod-binlog NEWS -- history of user-visible changes. 2017-08-06 1Vmod-binlog NEWS -- history of user-visible changes. 2017-08-10
2Copyright (C) 2013-2017 Sergey Poznyakoff 2Copyright (C) 2013-2017 Sergey Poznyakoff
3See the end of file for copying conditions. 3See the end of file for copying conditions.
4 4
5Please send Vmod-binlog bug reports to <gray@gnu.org> 5Please send Vmod-binlog bug reports to <gray@gnu.org>
6 6
7Version 2.2, 2017-08-10
8
9* Support for Varnish 5.1
10
11
7Version 2.1, 2017-08-05 12Version 2.1, 2017-08-05
8 13
9* Support for Varnish 4.1 14* Support for Varnish 4.1
diff --git a/README b/README
index b961dcd..c1d552b 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
1Vmod-binlog README 1Vmod-binlog README
2Copyright (C) 2013-2014 Sergey Poznyakoff 2Copyright (C) 2013-2017 Sergey Poznyakoff
3See the end of file for copying conditions. 3See the end of file for copying conditions.
4 4
5* Introduction 5* Introduction
@@ -23,6 +23,8 @@ big amounts of information arriving at high rates.
23The package provides the module itself and the utilities for listing 23The package provides the module itself and the utilities for listing
24and searching in binary log files. 24and searching in binary log files.
25 25
26The module was tested with Varnish versions 4.1, and 5.1.
27
26* Installation 28* Installation
27 29
28In order to compile the package you need to have the varnishd and varnishapi 30In order to compile the package you need to have the varnishd and varnishapi
@@ -90,7 +92,7 @@ Send bug reports and suggestions to <gray@gnu.org>
90 92
91* Copyright information: 93* Copyright information:
92 94
93Copyright (C) 2013-2014 Sergey Poznyakoff 95Copyright (C) 2013-2017 Sergey Poznyakoff
94 96
95 Permission is granted to anyone to make or distribute verbatim copies 97 Permission is granted to anyone to make or distribute verbatim copies
96 of this document as received, in any medium, provided that the 98 of this document as received, in any medium, provided that the
diff --git a/acvmod b/acvmod
Subproject ba32780019480b89cd9d796b93a76cae6afe99a Subproject 43ef3ce139aa5ddb9aa0437c356a86290536900
diff --git a/configure.ac b/configure.ac
index b0ce64a..b473238 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,12 +14,13 @@
14# You should have received a copy of the GNU General Public License 14# You should have received a copy of the GNU General Public License
15# along with vmod-binlog. If not, see <http://www.gnu.org/licenses/>. 15# along with vmod-binlog. If not, see <http://www.gnu.org/licenses/>.
16AC_PREREQ(2.69) 16AC_PREREQ(2.69)
17AC_INIT([vmod-binlog], 2.1, [gray@gnu.org]) 17AC_INIT([vmod-binlog], 2.2, [gray@gnu.org])
18AC_CONFIG_AUX_DIR([build-aux]) 18AC_CONFIG_AUX_DIR([build-aux])
19AC_CONFIG_MACRO_DIR([m4]) 19AC_CONFIG_MACRO_DIR([m4])
20AC_CONFIG_SRCDIR(src/binlog.c) 20AC_CONFIG_SRCDIR(src/binlog.c)
21AM_CONFIG_HEADER(config.h) 21AM_CONFIG_HEADER(config.h)
22 22
23AC_SUBST([AC_VMOD_BASENAME],[binlog])
23AC_CANONICAL_SYSTEM 24AC_CANONICAL_SYSTEM
24AC_LANG(C) 25AC_LANG(C)
25 26
@@ -51,7 +52,7 @@ AC_SYS_LARGEFILE
51AC_HEADER_STDC 52AC_HEADER_STDC
52AC_CHECK_HEADERS([sys/stdlib.h]) 53AC_CHECK_HEADERS([sys/stdlib.h])
53 54
54AM_VARNISHAPI 55AM_VARNISHAPI([4.1])
55 56
56AC_SUBST(BINLOGSEL_MODDIR,'$(libdir)/$(PACKAGE)') 57AC_SUBST(BINLOGSEL_MODDIR,'$(libdir)/$(PACKAGE)')
57 58
diff --git a/tests/Makefile.am b/tests/Makefile.am
index ecaffca..ddb7dd7 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -31,6 +31,7 @@ $(srcdir)/package.m4: $(top_srcdir)/configure.ac
31 echo 'm4_define([AT_PACKAGE_VERSION], [@PACKAGE_VERSION@])'; \ 31 echo 'm4_define([AT_PACKAGE_VERSION], [@PACKAGE_VERSION@])'; \
32 echo 'm4_define([AT_PACKAGE_STRING], [@PACKAGE_STRING@])'; \ 32 echo 'm4_define([AT_PACKAGE_STRING], [@PACKAGE_STRING@])'; \
33 echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \ 33 echo 'm4_define([AT_PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
34 echo 'm4_define([AT_VMOD_BASENAME], [@AC_VMOD_BASENAME@])'; \
34 } >$(srcdir)/package.m4 35 } >$(srcdir)/package.m4
35 36
36# 37#
diff --git a/tests/atlocal.in b/tests/atlocal.in
index 61d33f4..955d915 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -2,7 +2,7 @@
2# Configurable variable values for vmod-binlog test suite. 2# Configurable variable values for vmod-binlog test suite.
3# Copyright (C) 2013-2017 Sergey Poznyakoff 3# Copyright (C) 2013-2017 Sergey Poznyakoff
4 4
5PATH=@abs_builddir@:@abs_top_builddir@/src:@abs_top_srcdir@/build-aux:$top_srcdir:$srcdir:$PATH 5PATH=@abs_builddir@:@abs_top_builddir@/src:@abs_top_srcdir@/build-aux:$top_srcdir:$srcdir:@VARNISH_SBINDIR@:$PATH
6VARNISHD=@VARNISHD@ 6VARNISHD=@VARNISHD@
7VARNISHTEST="@VARNISHTEST@ -Dvarnishd=$VARNISHD" 7VARNISHTEST=@VARNISHTEST@
8 8

Return to:

Send suggestions and report system problems to the System administrator.