Howdy.

Here's the changes I did to get crypto 5.3 to build on my Mac Darwin machine.

I changed the CXX line in the makefile to read:

ifeq ($(UNAME),Darwin)
CXX = c++-3.3

Remove the -fnocoalesce-* lines from the CXXFLAGS line

CXXFLAGS += -D__pic__

Modified socketft.h, commenting out this #include (since it doesnt exist)

//#ifdef __GNUC__
//#include <_G_config.h>
//#endif

and in the makefile for the tests, I had to add the CXX line as well, under the Darwin ifeq:

ifeq ($(UNAME),Darwin)
CXX = c++-3.3

All tests passed.

Hope this helps
-=Bob
www.insors.com

Reply via email to