~kaktusjoe/libroot/root-6.12.06-6

« back to all changes in this revision

Viewing changes to debian/patches/FixUnresolvedHash.diff

  • Committer: Joseph F. Boudreau
  • Date: 2018-10-01 01:32:30 UTC
  • Revision ID: boudreau@pitt.edu-20181001013230-8ezp9ooan4pov4mr
Finally working version of packaging files

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
+XXH_PUBLIC_API XXH64_hash_t  XXH64_digest (const XXH64_state_t* statePtr);
246
246
+
247
247
+/*======   Canonical representation   ======*/
248
 
+typedef struct { unsigned char digest[8]; } XXH64_canonical_t;
 
248
+//typedef struct { unsigned char digest[8]; } XXH64_canonical_t;
249
249
+XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash);
250
250
+XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src);
251
251
+#endif  /* XXH_NO_LONG_LONG */
252
252
+
253
253
+
254
 
+#ifdef XXH_STATIC_LINKING_ONLY
 
254
+#ifndef XXH_STATIC_LINKING_ONLY
255
255
+
256
256
+/* ================================================================================================
257
257
+   This section contains definitions which are not guaranteed to remain stable.
408
408
+static void* XXH_memcpy(void* dest, const void* src, size_t size) { return memcpy(dest,src,size); }
409
409
+
410
410
+#define XXH_STATIC_LINKING_ONLY
411
 
+#include "xxhash.h"
 
411
+//#include "xxhash.h"
412
412
+
413
413
+
414
414
+/* *************************************