Subject: | To install on Centos5 64 bit, OpenSSL 0.9.8e-fips-rhel5 |
To install on Centos5 64 bit, OpenSSL 0.9.8e-fips-rhel5, I had to do
the following:
Apply the patch noted at the end of bug "48877 Still segfaults" which
is to add these lines to EWP.xs after line 100:
/* p7bio now owns memBio, so don't try to free it */
memBio = NULL;
run:
perl Makefile.PL
(There may be a way to change Makefile.PL to accomplish the following,
but I'm not knowledgeable enough to know how.)
edit Makefile and change lines 294 and 295 to look in /usr/lib64
Change:
EXTRALIBS = -L/usr -L/usr/lib -lssl -lcrypto
LDLOADLIBS = -L/usr -L/usr/lib -lssl -lcrypto
To:
EXTRALIBS = -L/usr -L/usr/lib64 -lssl -lcrypto
LDLOADLIBS = -L/usr -L/usr/lib64 -lssl -lcrypto
make
make test
make install