summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/SConstruct')
-rw-r--r--src/third_party/wiredtiger/SConstruct8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/SConstruct b/src/third_party/wiredtiger/SConstruct
index 70ed6e0220b..6a2b0497d15 100644
--- a/src/third_party/wiredtiger/SConstruct
+++ b/src/third_party/wiredtiger/SConstruct
@@ -167,6 +167,7 @@ if useTcmalloc:
if conf.CheckCHeader('gperftools/tcmalloc.h'):
wtlibs.append("libtcmalloc_minimal")
conf.env.Append(CPPDEFINES=['HAVE_LIBTCMALLOC'])
+ conf.env.Append(CPPDEFINES=['HAVE_POSIX_MEMALIGN'])
else:
print 'tcmalloc.h must be installed!'
Exit(1)
@@ -406,8 +407,11 @@ Default(t)
t = env.Program("t_huge",
"test/huge/huge.c",
LIBS=[wtlib] + wtlibs)
-#env.Alias("check", env.SmokeTest(t))
-Default(t)
+
+#t = env.Program("t_recovery",
+# "test/recovery/recovery.c",
+# LIBS=[wtlib] + wtlibs)
+#Default(t)
t = env.Program("t_fops",
["test/fops/file.c",