From a9b20ae6a38073afe91ae2b7d789ddfb7dabade8 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 6 Jul 2017 00:21:01 +0000 Subject: Use zlib for CRC-32 Previously, we had our own CRC that was almost but not quite like zlib's implementation. However, * it hasn't been subjected to the same rigor with regard to error-detection properties and * it may not even get used, depending upon whether zlib happens to get loaded before or after liberasurecode. Now, we'll use zlib's CRC-32 when writing new frags, while still tolerating frags that were created with the old implementation. Change-Id: Ib5ea2a830c7c23d66bf2ca404a3eb84ad00c5bc5 Closes-Bug: 1666320 --- erasurecode.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'erasurecode.pc.in') diff --git a/erasurecode.pc.in b/erasurecode.pc.in index ee6d82b..175367c 100644 --- a/erasurecode.pc.in +++ b/erasurecode.pc.in @@ -11,5 +11,5 @@ Version: @LIBERASURECODE_VERSION@ Requires: Conflicts: Libs: -L${libdir} -lerasurecode -Libs.private: @ERASURECODE_STATIC_LIBS@ +Libs.private: @ERASURECODE_STATIC_LIBS@ -lz Cflags: -I${includedir}/ -I${includedir}/liberasurecode -- cgit v1.2.1