Merge in new docs.
[awesomized/libmemcached] / libhashkit / algorithm.c
index e8f859e879cfe8ad67ec5666dffc20d9f5ccbc99..de00081da56c648246fdb2a7f99a72ef93b6a514 100644 (file)
@@ -6,7 +6,7 @@
  * the COPYING file in the parent directory for full text.
  */
 
-#include "common.h"
+#include <libhashkit/common.h>
 
 uint32_t libhashkit_one_at_a_time(const char *key, size_t key_length)
 {
@@ -45,10 +45,12 @@ uint32_t libhashkit_hsieh(const char *key, size_t key_length)
 }
 #endif
 
+#ifdef HAVE_MURMUR_HASH
 uint32_t libhashkit_murmur(const char *key, size_t key_length)
 {
   return hashkit_murmur(key, key_length, NULL);
 }
+#endif
 
 uint32_t libhashkit_jenkins(const char *key, size_t key_length)
 {