From bd9efab766c7346bae44f0b6acff5128faadfe2e Mon Sep 17 00:00:00 2001 From: Davi Reis Date: Tue, 13 Mar 2012 19:34:03 -0300 Subject: [PATCH] Added Murmur3 support. Not necessarily faster. Conflicts: cxxmph/Makefile.am --- cxxmph/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cxxmph/Makefile.am b/cxxmph/Makefile.am index 2e57a18..f1129d4 100644 --- a/cxxmph/Makefile.am +++ b/cxxmph/Makefile.am @@ -3,10 +3,10 @@ check_PROGRAMS = mph_map_test mph_index_test trigraph_test noinst_PROGRAMS = bm_index bm_map bin_PROGRAMS = cxxmph lib_LTLIBRARIES = libcxxmph.la -libcxxmph_la_SOURCES = MurmurHash2.h trigragh.h trigraph.cc mph_index.h mph_index.cc seeded_hash.h stringpiece.h benchmark.h benchmark.cc +libcxxmph_la_SOURCES = MurmurHash3.h MurmurHash3.cpp trigragh.h trigraph.cc mph_index.h mph_index.cc seeded_hash.h stringpiece.h benchmark.h benchmark.cc libcxxmph_la_LDFLAGS = -version-info 0:0:0 cxxmph_includedir = $(includedir)/cxxmph/ -cxxmph_include_HEADERS = mph_map.h mph_index.h MurmurHash2.h trigraph.h seeded_hash.h stringpiece.h +cxxmph_include_HEADERS = mph_map.h mph_index.h MurmurHash3.h trigraph.h seeded_hash.h stringpiece.h mph_map_test_LDADD = libcxxmph.la mph_map_test_SOURCES = mph_map_test.cc