require new version of librelp

This commit is contained in:
Rainer Gerhards 2016-07-05 09:38:16 +02:00
parent 1889b4ff14
commit 07bf373e72
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
------------------------------------------------------------------------------
Version 8.20.0 [v8-stable] 2016-07-12
- NEW BUILD REQUIREMENT: librelp, was 1.2.5, now is 1.2.12
This is only needed if --enable-relp is used. The new version is needed
to support the new timeout parameter.
- bugfix omfile: handle chown() failure correctly
If the file creation succeeds, but chown() failed, the file was
still writen, even if the user requested that this should be treated

View File

@ -1096,7 +1096,7 @@ AC_ARG_ENABLE(relp,
[enable_relp=no]
)
if test "x$enable_relp" = "xyes"; then
PKG_CHECK_MODULES(RELP, relp >= 1.2.5)
PKG_CHECK_MODULES(RELP, relp >= 1.2.12)
AC_DEFINE([ENABLE_RELP], [1], [Indicator that RELP is present])
fi
AM_CONDITIONAL(ENABLE_RELP, test x$enable_relp = xyes)