Commit a5969563 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 ca7d898e
......@@ -26,7 +26,7 @@ else
ifdef BDBDIR
BDB_LDFLAGS += -Wl,-rpath,$(BDBDIR)/lib -lpthread
endif
TDB_LOADLIBES = -L../ -ldb -Wl,-rpath,..
TDB_LOADLIBES = -L../ -ldb -Wl,-rpath,.. -lpthread
VGRIND=valgrind --quiet --error-exitcode=1 --leak-check=yes
endif
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