X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libhashkit%2Fdigest.c;h=e1559819db8faff2d3f6d4e6e7b2f3e079ea449b;hb=6bc6cf720913ae042f36e62e09abce7d340607ab;hp=bca6b5b59a0e474e3b0bf8968f1c231b60f26090;hpb=dac48f2dbe34915755f8f4f7f88419f47dc9e27f;p=awesomized%2Flibmemcached diff --git a/libhashkit/digest.c b/libhashkit/digest.c index bca6b5b5..e1559819 100644 --- a/libhashkit/digest.c +++ b/libhashkit/digest.c @@ -6,7 +6,7 @@ * the COPYING file in the parent directory for full text. */ -#include "common.h" +#include uint32_t hashkit_digest(const hashkit_st *self, const char *key, size_t key_length) { @@ -38,7 +38,11 @@ uint32_t libhashkit_digest(const char *key, size_t key_length, hashkit_hash_algo return 1; #endif case HASHKIT_HASH_MURMUR: +#ifdef HAVE_MURMUR_HASH return libhashkit_murmur(key, key_length); +#else + return 1; +#endif case HASHKIT_HASH_JENKINS: return libhashkit_jenkins(key, key_length); case HASHKIT_HASH_CUSTOM: