Commit 9d2888d3 authored by Rich Prohaska's avatar Rich Prohaska

need -lpthread to get mutex locks to work right (not recursive). addresses #167

git-svn-id: file:///svn/tokudb@1673 c7de825b-a66e-492c-adef-691d508d4ae1
parent 4fd46b6a
...@@ -26,7 +26,7 @@ else ...@@ -26,7 +26,7 @@ else
ifdef BDBDIR ifdef BDBDIR
BDB_LDFLAGS += -Wl,-rpath,$(BDBDIR)/lib -lpthread BDB_LDFLAGS += -Wl,-rpath,$(BDBDIR)/lib -lpthread
endif endif
TDB_LOADLIBES = -L../ -ldb -Wl,-rpath,.. TDB_LOADLIBES = -L../ -ldb -Wl,-rpath,.. -lpthread
VGRIND=valgrind --quiet --error-exitcode=1 --leak-check=yes VGRIND=valgrind --quiet --error-exitcode=1 --leak-check=yes
endif endif
ifeq ($(VGRIND),) ifeq ($(VGRIND),)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment