Trying to install Tortunnel, i have downloaded ;
http://www.thoughtcrime.org/software/tortunnel/tortunnel-0.3.tar.gz
extracted the file changed the directory am in to the extracted folder with terminal
cd tortunnel-0.3
and applied the
./configure
got to the step where i have to
make && make install
and then i got ;
./TorProxy.h:33:10: fatal error: 'boost/shared_ptr.hpp' file not found
#include <boost/shared_ptr.hpp>
^
1 error generated.
make: *** [TorProxy.o] Error 1
i made sure to install boost, and since i got brew on my mac it was simple;
brew install boost
without changing the the directory am in, i assumed it wont effect the boost installation.
then i ran the command;
make && make install
got the same error.
going over the files i made sure shared_ptr.hpp is present, and the file location is;
/usr/local/Cellar/boost/1.60.0_2/include/boost
the tortunnel-0.3 file location is ;
/Users/PK/Downloads
so is this error i am getting because the files locations as i assume ?, and how could i fix this ?