summaryrefslogtreecommitdiff
path: root/third_party/snappy.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/snappy.py')
-rw-r--r--third_party/snappy.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/third_party/snappy.py b/third_party/snappy.py
deleted file mode 100644
index e9881106c87..00000000000
--- a/third_party/snappy.py
+++ /dev/null
@@ -1,14 +0,0 @@
-
-def configure( env , fileLists , options ):
- #fileLists = { "serverOnlyFiles" : [] }
-
- myenv = env.Clone()
- if not options["windows"]:
- myenv.Append(CPPFLAGS=" -Wno-sign-compare -Wno-unused-function ") #snappy doesn't compile cleanly
-
- files = ["third_party/snappy/snappy.cc", "third_party/snappy/snappy-sinksource.cc"]
-
- fileLists["serverOnlyFiles"] += [ myenv.Object(f) for f in files ]
-
-def configureSystem( env , fileLists , options ):
- env.Append( LIBS=[ "snappy" ] )