aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-12-10 15:37:46 +0200
committerSergey Poznyakoff <gray@gnu.org>2018-12-10 15:37:46 +0200
commit5b18b9c1e8d0e0ad14937669a931a1a358e65091 (patch)
tree155fad81320aa1d742513b4c64a7c024ed437b2e
parenta29737fc04272ac38d639ac25841183db1052fbc (diff)
downloadvmod-dict-5b18b9c1e8d0e0ad14937669a931a1a358e65091.tar.gz
vmod-dict-5b18b9c1e8d0e0ad14937669a931a1a358e65091.tar.bz2
Version 1.2 (support for Varnish 6.0.2)release-1.2
-rw-r--r--NEWS8
-rw-r--r--README3
m---------acvmod0
-rw-r--r--configure.ac8
-rw-r--r--src/vmod_dict.c18
5 files changed, 23 insertions, 14 deletions
diff --git a/NEWS b/NEWS
index ca8f679..dc2ba29 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,2 @@
1vmod_dict -- history of user-visible changes. 2017-08-10 1vmod_dict -- history of user-visible changes. 2018-12-10
2Copyright (C) 2017 Sergey Poznyakoff
3See the end of file for copying conditions. 2See the end of file for copying conditions.
@@ -6,2 +5,5 @@ Please send vmod_dict bug reports to <gray@gnu.org>
6 5
6Version 1.2, 2018-12-10
7
8* Support for Varnish 6.0.2
7 9
@@ -19,3 +21,3 @@ Copyright information:
19 21
20Copyright (C) 2017 Sergey Poznyakoff 22Copyright (C) 2017-2018 Sergey Poznyakoff
21 23
diff --git a/README b/README
index 2109a6b..7c4a5c5 100644
--- a/README
+++ b/README
@@ -1,3 +1,2 @@
1Vmod_dict README 1Vmod_dict README
2Copyright (C) 2017 Sergey Poznyakoff
3See the end of file for copying conditions. 2See the end of file for copying conditions.
@@ -44,3 +43,3 @@ In order to compile the package you need to have installed
44varnishd and varnishapi package. The module has been tested with 43varnishd and varnishapi package. The module has been tested with
45Varnish versions 4.1 and 5.1. 44Varnish versions 4.1, 5.1, and 6.0.2.
46 45
diff --git a/acvmod b/acvmod
Subproject 5f6dce2f7dd35a154333bb42d134a018b981f81 Subproject 5b214e3d72f9e261a37cf31deb41e7f8a61a181
diff --git a/configure.ac b/configure.ac
index 5d50849..1054289 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,3 +1,3 @@
1# This file is part of vmod_dict. 1# This file is part of vmod_dict.
2# Copyright (C) 2017 Sergey Poznyakoff 2# Copyright (C) 2017-2018 Sergey Poznyakoff
3# 3#
@@ -17,3 +17,3 @@
17AC_PREREQ(2.69) 17AC_PREREQ(2.69)
18AC_INIT([vmod-dict], [1.1], [gray@gnu.org]) 18AC_INIT([vmod-dict], [1.2], [gray@gnu.org])
19AC_CONFIG_AUX_DIR([build-aux]) 19AC_CONFIG_AUX_DIR([build-aux])
@@ -47,3 +47,5 @@ AC_HEADER_STDC
47 47
48AM_VARNISHAPI([4.1],[5.1]) 48AM_VARNISHAPI([4.1],[6.0.9])
49AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
50 [Varnish API major version number])
49 51
diff --git a/src/vmod_dict.c b/src/vmod_dict.c
index 04ee52c..f9114d1 100644
--- a/src/vmod_dict.c
+++ b/src/vmod_dict.c
@@ -1,3 +1,3 @@
1/* This file is part of vmod_dict. 1/* This file is part of vmod_dict.
2 Copyright (C) 2017 Sergey Poznyakoff 2 Copyright (C) 2017-2018 Sergey Poznyakoff
3 3
@@ -24,7 +24,13 @@
24#include <syslog.h> 24#include <syslog.h>
25#include "vcl.h" 25#if VARNISHAPI_MAJOR > 5
26#include "vrt.h" 26# include <cache/cache.h>
27#include "vas.h" 27# include <vcl.h>
28#include "cache/cache.h" 28# include <vcc_if.h>
29#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#include <vas.h>
30 36

Return to:

Send suggestions and report system problems to the System administrator.