From 058a0357cd9650b214a199f81669a07d3eb4a298 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 12 Dec 2012 02:17:55 +0100 Subject: [PATCH] Remove Snappy support --- build_detect_platform | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/build_detect_platform b/build_detect_platform index d50869d0c210c..4f175c1d822aa 100755 --- a/build_detect_platform +++ b/build_detect_platform @@ -173,17 +173,6 @@ EOF COMMON_FLAGS="$COMMON_FLAGS -DLEVELDB_PLATFORM_POSIX" fi - # Test whether Snappy library is installed - # http://code.google.com/p/snappy/ - $CXX $CXXFLAGS -x c++ - -o $CXXOUTPUT 2>/dev/null < - int main() {} -EOF - if [ "$?" = 0 ]; then - COMMON_FLAGS="$COMMON_FLAGS -DSNAPPY" - PLATFORM_LIBS="$PLATFORM_LIBS -lsnappy" - fi - # Test whether tcmalloc is available $CXX $CXXFLAGS -x c++ - -o $CXXOUTPUT -ltcmalloc 2>/dev/null <