diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-09-12 20:14:30 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-09-12 21:32:13 +0200 |
commit | b860bd83b22429175542f885fdd1fc52d770eeb2 (patch) | |
tree | 2c32dd7dd06bc0c85b667db55fe7ff89b12b6287 /package/librsync/0001-fix-build-with-clang.patch | |
parent | 268c52865b3b1b286a9b48c03814afe4ea431c34 (diff) | |
download | buildroot-b860bd83b22429175542f885fdd1fc52d770eeb2.tar.gz buildroot-b860bd83b22429175542f885fdd1fc52d770eeb2.zip |
package/librsync: security bump to version 2.0.0
Removed patch applied upstream, switched to cmake-package following
upstream removal of autoconf.
Short summary of changes:
version 1.0.1
- switched from autoconf to cmake
version 1.0.0:
- fixed CVE-2014-8242
- project moved to github
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/librsync/0001-fix-build-with-clang.patch')
-rw-r--r-- | package/librsync/0001-fix-build-with-clang.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/package/librsync/0001-fix-build-with-clang.patch b/package/librsync/0001-fix-build-with-clang.patch deleted file mode 100644 index ea513c04d9..0000000000 --- a/package/librsync/0001-fix-build-with-clang.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 1175b1cd102ee15512185c7983868e5746959da0 Mon Sep 17 00:00:00 2001 -From: Adam Schubert <feartohell@seznam.cz> -Date: Mon, 11 May 2015 04:25:45 +0200 -Subject: [PATCH] Fix build under clang - -Downloaded from upstream commit: -https://github.com/librsync/librsync/commit/1175b1cd102ee15512185c7983868e5746959da0.patch - -Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> - ---- - delta.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/delta.c b/delta.c -index 19498f9..72afdf6 100644 ---- a/delta.c -+++ b/delta.c -@@ -126,12 +126,12 @@ static rs_result rs_delta_s_scan(rs_job_t *job); - static rs_result rs_delta_s_flush(rs_job_t *job); - static rs_result rs_delta_s_end(rs_job_t *job); - void rs_getinput(rs_job_t *job); --inline int rs_findmatch(rs_job_t *job, rs_long_t *match_pos, size_t *match_len); --inline rs_result rs_appendmatch(rs_job_t *job, rs_long_t match_pos, size_t match_len); --inline rs_result rs_appendmiss(rs_job_t *job, size_t miss_len); --inline rs_result rs_appendflush(rs_job_t *job); --inline rs_result rs_processmatch(rs_job_t *job); --inline rs_result rs_processmiss(rs_job_t *job); -+static inline int rs_findmatch(rs_job_t *job, rs_long_t *match_pos, size_t *match_len); -+static inline rs_result rs_appendmatch(rs_job_t *job, rs_long_t match_pos, size_t match_len); -+static inline rs_result rs_appendmiss(rs_job_t *job, size_t miss_len); -+static inline rs_result rs_appendflush(rs_job_t *job); -+static inline rs_result rs_processmatch(rs_job_t *job); -+static inline rs_result rs_processmiss(rs_job_t *job); - - /** - * \brief Get a block of data if possible, and see if it matches. |