gamelinux / passivedns

A network sniffer that logs all DNS server replies for use in a passive DNS setup
http://gamelinux.org/
1.67k stars 372 forks source link

Build issue on OSX El Capitan #74

Closed jack8daniels2 closed 8 years ago

jack8daniels2 commented 8 years ago

The first hurdle is lack of openssl libraries. It can be overcome by pointing to OSX native openssl libraries

./configure --with-openssl-includes=/usr/local/opt/openssl/include --with-openssl-libraries=/usr/local/opt/openssl/lib

But then make fails with the following error -

make 
Making all in src
/Applications/Xcode.app/Contents/Developer/usr/bin/make  all-am
make[1]: Nothing to be done for `all-am'.
thus commented 8 years ago

Could you try doing a "make clean" before "make"?

Sometimes it won't work if you have already tried running make.

jack8daniels2 commented 8 years ago

That worked. Thanks