Hi all, I downloaded and built OpenSSL 1.0.0 on OSX 1.5 PPC using the workaround described in the PROBLEMS file. After restoring the .dylib files to their original locations and adding /usr/local/ssl/bin to paths.d, I can execute OpenSSL fine. openssl version tells me 1.0.0 (as expected).
The problem is in my include statements. The output of the following test program is "OpenSSL version included is: 9466063" even when I compile with -I/usr/local/ssl/include/openssl. --TEST PROGRAM-- #include <stdio.h> #include <openssl/opensslv.h> int main(int argc, char** argv) { printf("OpenSSL version included is: %d\n", OPENSSL_VERSION_NUMBER); } --END TEST PROGRAM-- What have I missed? -YYK