Skip to content

Commit

Permalink
fix c++ pthread.h path for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
trin-cz committed Dec 4, 2014
1 parent e72ee12 commit 985e7f4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions c++/sodium/transaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
#include <set>
#include <list>
#include <memory>
#ifdef __linux
#include <pthread.h>
#else
#include <pthread/pthread.h>
#endif
#if defined(SODIUM_NO_CXX11)
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
Expand Down

0 comments on commit 985e7f4

Please sign in to comment.