]> git.ipfire.org Git - thirdparty/openssl.git/blame - PROBLEMS
There are problems on certain platforms, and possible answers on how to (temporarly...
[thirdparty/openssl.git] / PROBLEMS
CommitLineData
80e1495b
RL
1* System libcrypto.dylib and libssl.dylib are used by system ld on MacOS X.
2[NOTE: This is currently undergoing tests, and may be removed soon]
3
4This is really a bug in ld, which seems to look for .dylib libraries along
5the whole library path before it bothers looking for .a libraries. This
6means that -L switches won't matter unless OpenSSL is built with shared
7library support.
8
9The workaround may be to change the following lines in apps/Makefile.ssl and
10test/Makefile.ssl:
11
12 LIBCRYPTO=-L.. -lcrypto
13 LIBSSL=-L.. -lssl
14
15to:
16
17 LIBCRYPTO=../libcrypto.a
18 LIBSSL=../libssl.a
19
20It's possible that something similar is needed for shared library support
21as well. That hasn't been well tested yet.
22
23As long as Apple doesn't fix the problem with ld, this problem building
24OpenSSL will remain as is.
25