aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2017-08-10 15:05:47 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2017-08-10 15:06:51 +0300
commit0700401f26aa83e68bf0a8e071fa891ee57bde30 (patch)
tree0b8bf0cbe5252cee6322002b63e5fa7de2372e18
parenteae3e0f9bd23456e7b0ce66c258eff9f792f13e2 (diff)
downloadvmod-sql-0700401f26aa83e68bf0a8e071fa891ee57bde30.tar.gz
vmod-sql-0700401f26aa83e68bf0a8e071fa891ee57bde30.tar.bz2
Support for varnish 5.1.release-1.2
* configure.ac: Set version 1.2. (AC_VMOD_BASENAME): New subst variable. * NEWS: Document changes. * README: Document changes. * acvmod: Update.
-rw-r--r--NEWS6
-rw-r--r--README2
m---------acvmod0
-rw-r--r--configure.ac5
4 files changed, 10 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 1a4d90e..a366dd8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,12 @@
-vmod-sql -- history of user-visible changes. 2017-08-06
+vmod-sql -- history of user-visible changes. 2017-08-10
Copyright (C) 2013-2017 Sergey Poznyakoff
See the end of file for copying conditions.
Please send vmod-sql bug reports to <gray@gnu.org>
+
+Version 1.2, 2017-08-10
+
+* Support for Varnish 5.1
Version 1.1, 2017-08-06
diff --git a/README b/README
index 57270da..23ec3ca 100644
--- a/README
+++ b/README
@@ -15,6 +15,8 @@ For accessing complete vmod-sql documentation, see the section
Vmod-sql is a module for Varnish Cache. It provides API for accessing
MySQL and PostgreSQL databases from VCL scripts.
+The module was tested with Varnish versions 4.1 and 5.1.
+
* Installation
In order to compile the package you need to have the varnishd and
diff --git a/acvmod b/acvmod
-Subproject ba32780019480b89cd9d796b93a76cae6afe99a
+Subproject 5f6dce2f7dd35a154333bb42d134a018b981f81
diff --git a/configure.ac b/configure.ac
index df3e17c..324794f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,12 +14,13 @@
# You should have received a copy of the GNU General Public License
# along with vmod-sql. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.69)
-AC_INIT([vmod-sql], 1.1, [gray@gnu.org])
+AC_INIT([vmod-sql], 1.2, [gray@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod-sql.c)
AM_CONFIG_HEADER(config.h)
+AC_SUBST([AC_VMOD_BASENAME],[sql])
AC_CANONICAL_SYSTEM
AC_LANG(C)
@@ -42,7 +43,7 @@ AC_PROG_MAKE_SET
AC_HEADER_STDC
AC_CHECK_HEADERS([sys/stdlib.h])
-AM_VARNISHAPI
+AM_VARNISHAPI([4.1],[5.1])
###########
# Check for SQL support

Return to:

Send suggestions and report system problems to the System administrator.