* System libcrypto.dylib and libssl.dylib are used by system ld on MacOS X.[NOTE: This is currently undergoing tests, and may be removed soon]This is really a bug in ld, which seems to look for .dylib libraries alongthe whole library path before it bothers looking for .a libraries. Thismeans that -L switches won't matter unless OpenSSL is built with sharedlibrary support.The workaround may be to change the following lines in apps/Makefile.ssl andtest/Makefile.ssl: LIBCRYPTO=-L.. -lcrypto LIBSSL=-L.. -lsslto: LIBCRYPTO=../libcrypto.a LIBSSL=../libssl.aIt's possible that something similar is needed for shared library supportas well. That hasn't been well tested yet.As long as Apple doesn't fix the problem with ld, this problem buildingOpenSSL will remain as is.