aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rw-r--r--README3
m---------acvmod0
-rw-r--r--configure.ac5
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/atlocal.in2
-rw-r--r--tests/ci.at2
-rw-r--r--tests/cs.at2
8 files changed, 15 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 3a8e71e..ca8f679 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,15 @@
1vmod_dict -- history of user-visible changes. 2017-08-06 1vmod_dict -- history of user-visible changes. 2017-08-10
2Copyright (C) 2017 Sergey Poznyakoff 2Copyright (C) 2017 Sergey Poznyakoff
3See the end of file for copying conditions. 3See the end of file for copying conditions.
4 4
5Please send vmod_dict bug reports to <gray@gnu.org> 5Please send vmod_dict bug reports to <gray@gnu.org>
6 6
7 7
8Version 1.1, 2017-08-10
9
10* Support for Varnish 5.1
11
12
8Version 1.0, 2017-08-06 13Version 1.0, 2017-08-06
9 14
10Initial release 15Initial release
diff --git a/README b/README
index bf98aab..2109a6b 100644
--- a/README
+++ b/README
@@ -41,7 +41,8 @@ as follows:
41* Installation 41* Installation
42 42
43In order to compile the package you need to have installed 43In order to compile the package you need to have installed
44varnishd and varnishapi package. 44varnishd and varnishapi package. The module has been tested with
45Varnish versions 4.1 and 5.1.
45 46
46Supposing that condition is met, run: 47Supposing that condition is met, run:
47 48
diff --git a/acvmod b/acvmod
Subproject ba32780019480b89cd9d796b93a76cae6afe99a Subproject 5f6dce2f7dd35a154333bb42d134a018b981f81
diff --git a/configure.ac b/configure.ac
index 30e9bc0..5d50849 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,12 +15,13 @@
15# along with vmod_dict. If not, see <http://www.gnu.org/licenses/>. 15# along with vmod_dict. If not, see <http://www.gnu.org/licenses/>.
16 16
17AC_PREREQ(2.69) 17AC_PREREQ(2.69)
18AC_INIT([vmod-dict], [1.0], [gray@gnu.org]) 18AC_INIT([vmod-dict], [1.1], [gray@gnu.org])
19AC_CONFIG_AUX_DIR([build-aux]) 19AC_CONFIG_AUX_DIR([build-aux])
20AC_CONFIG_MACRO_DIR([m4]) 20AC_CONFIG_MACRO_DIR([m4])
21AC_CONFIG_SRCDIR(src/vmod_dict.vcc) 21AC_CONFIG_SRCDIR(src/vmod_dict.vcc)
22AM_CONFIG_HEADER(config.h) 22AM_CONFIG_HEADER(config.h)
23 23
24AC_SUBST([AC_VMOD_BASENAME],[dict])
24AC_CANONICAL_SYSTEM 25AC_CANONICAL_SYSTEM
25AC_LANG(C) 26AC_LANG(C)
26 27
@@ -44,7 +45,7 @@ AC_HEADER_STDC
44 45
45# Check for functions 46# Check for functions
46 47
47AM_VARNISHAPI([4.1]) 48AM_VARNISHAPI([4.1],[5.1])
48 49
49AC_CONFIG_TESTDIR(tests) 50AC_CONFIG_TESTDIR(tests)
50AC_CONFIG_FILES([tests/Makefile tests/atlocal]) 51AC_CONFIG_FILES([tests/Makefile tests/atlocal])
diff --git a/tests/Makefile.am b/tests/Makefile.am
index d70517f..6c5967c 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 142b9ed..5d6b7f3 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -2,6 +2,6 @@
2# Configurable variable values for vmod_dict test suite. 2# Configurable variable values for vmod_dict test suite.
3# Copyright (C) 2017 Sergey Poznyakoff 3# Copyright (C) 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
6VARNISHTEST=@VARNISHTEST@ 6VARNISHTEST=@VARNISHTEST@
7VARNISHD=@VARNISHD@ 7VARNISHD=@VARNISHD@
diff --git a/tests/ci.at b/tests/ci.at
index d486188..1115316 100644
--- a/tests/ci.at
+++ b/tests/ci.at
@@ -1,6 +1,6 @@
1AT_SETUP([case-insensitive]) 1AT_SETUP([case-insensitive])
2AT_KEYWORDS([case-insensitive]) 2AT_KEYWORDS([case-insensitive])
3AT_VARNISHTEST([dict],[ 3AT_VARNISHTEST([
4 sub vcl_init { 4 sub vcl_init {
5 dict.ci(true); 5 dict.ci(true);
6 dict.collisions(0); 6 dict.collisions(0);
diff --git a/tests/cs.at b/tests/cs.at
index 0333943..11366c4 100644
--- a/tests/cs.at
+++ b/tests/cs.at
@@ -1,6 +1,6 @@
1AT_SETUP([case-sensitive]) 1AT_SETUP([case-sensitive])
2AT_KEYWORDS([case-sensitive]) 2AT_KEYWORDS([case-sensitive])
3AT_VARNISHTEST([dict],[ 3AT_VARNISHTEST([
4 sub vcl_init { 4 sub vcl_init {
5 dict.collisions(0); 5 dict.collisions(0);
6 dict.load("\${vmod_topsrc}/tests/num.dict"); 6 dict.load("\${vmod_topsrc}/tests/num.dict");

Return to:

Send suggestions and report system problems to the System administrator.