Now that xxHash 0.8.0 is out we don't need this.
authorWayne Davison <wayne@opencoder.net>
Mon, 27 Jul 2020 20:37:00 +0000 (13:37 -0700)
committerWayne Davison <wayne@opencoder.net>
Mon, 27 Jul 2020 20:37:00 +0000 (13:37 -0700)
xxh3.diff [deleted file]

diff --git a/xxh3.diff b/xxh3.diff
deleted file mode 100644 (file)
index 5b0e529..0000000
--- a/xxh3.diff
+++ /dev/null
@@ -1,28 +0,0 @@
-This patch adds the current XXH3 checksum algorithms to rsync. They
-are not yet finalized, so do NOT use this in a distributed rsync yet!
-
-To use this patch, run these commands for a successful build:
-
-    patch -p1 <patches/xxh3.diff
-    ./configure                         (optional if already run)
-    make
-
-based-on: 5eda68f11bf6efe782cca60a2415191f4532c3b5
-diff --git a/checksum.c b/checksum.c
---- a/checksum.c
-+++ b/checksum.c
-@@ -26,11 +26,13 @@
-  * with this program; if not, visit the http://fsf.org website.
-  */
-+#define XXH_INLINE_ALL /* define to test pre-release XXH3 & XXH128 -- CURRENTLY UNSTABLE */
-+
- #include "rsync.h"
- #ifdef SUPPORT_XXHASH
- #include <xxhash.h>
--# if XXH_VERSION_NUMBER >= 800
-+# if XXH_VERSION_NUMBER >= 800 || defined XXH_INLINE_ALL
- #  define SUPPORT_XXH3 1
- # endif
- #endif