I am trying to port an application to mac OSX. It uses openssl. I am new to xcode and mac development. Do I need to compile and install openssl myself, or is there some equi
./configure darwin64-x86_64-cc
.make depend
.make install
./usr/local/ssl/include
and library search paths /usr/local/ssl/lib
(or whatever install paths you chose in the configure step)
.-lssl -lcrypto
You should be good to go now.