aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rw-r--r--README5
m---------acvmod0
-rw-r--r--configure.ac4
-rw-r--r--src/vmod_dict.c13
5 files changed, 14 insertions, 15 deletions
diff --git a/NEWS b/NEWS
index a28b8f9..bc30866 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
1vmod_dict -- history of user-visible changes. 2020-03-03 1vmod_dict -- history of user-visible changes. 2020-03-27
2See the end of file for copying conditions. 2See the end of file for copying conditions.
3 3
4Please send vmod_dict bug reports to <gray@gnu.org> 4Please send vmod_dict bug reports to <gray@gnu.org>
5 5
6Version 1.3.90 (git)
7
8* Drop support for Varnish versions prior to 6.0.0
9
10
6Version 1.3, 2020-03-03 11Version 1.3, 2020-03-03
7 12
8* Support for Varnish 6.3.1 13* Support for Varnish 6.3.1
diff --git a/README b/README
index 7c4a5c5..3affbfc 100644
--- a/README
+++ b/README
@@ -37,11 +37,12 @@ as follows:
37 37
38 set req.http.X-Value = dict.lookup("key"); 38 set req.http.X-Value = dict.lookup("key");
39 39
40The module has been tested with Varnish versions 6.0.2 -- 6.3.2.
41
40* Installation 42* Installation
41 43
42In order to compile the package you need to have installed 44In order to compile the package you need to have installed
43varnishd and varnishapi package. The module has been tested with 45varnishd and varnishapi package.
44Varnish versions 4.1, 5.1, and 6.0.2.
45 46
46Supposing that condition is met, run: 47Supposing that condition is met, run:
47 48
diff --git a/acvmod b/acvmod
Subproject 5b214e3d72f9e261a37cf31deb41e7f8a61a181 Subproject 99b8dd21c7d1a91021b0a63c0d846ac35c4b009
diff --git a/configure.ac b/configure.ac
index c37cc81..0dc3f0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
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.3], [gray@gnu.org]) 18AC_INIT([vmod-dict], [1.3.90], [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)
@@ -45,7 +45,7 @@ AC_HEADER_STDC
45 45
46# Check for functions 46# Check for functions
47 47
48AM_VARNISHAPI([4.1],[6.3.2]) 48AM_VARNISHAPI([6.0.0],[6.3.2])
49AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR], 49AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
50 [Varnish API major version number]) 50 [Varnish API major version number])
51 51
diff --git a/src/vmod_dict.c b/src/vmod_dict.c
index 8c1e230..3163657 100644
--- a/src/vmod_dict.c
+++ b/src/vmod_dict.c
@@ -22,16 +22,9 @@
22#include <limits.h> 22#include <limits.h>
23#include <ctype.h> 23#include <ctype.h>
24#include <syslog.h> 24#include <syslog.h>
25#if VARNISHAPI_MAJOR > 5 25#include <cache/cache.h>
26# include <cache/cache.h> 26#include <vcl.h>
27# include <vcl.h> 27#include <vcc_if.h>
28# include <vcc_if.h>
29#else
30# include <vcl.h>
31# include <vrt.h>
32# include <vcc_if.h>
33# include <cache/cache.h>
34#endif
35 28
36#ifdef VPFX 29#ifdef VPFX
37# define VEVENT(a) VPFX(a) 30# define VEVENT(a) VPFX(a)

Return to:

Send suggestions and report system problems to the System administrator.