aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-10-26 08:09:16 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-10-26 08:09:16 +0000
commit2a80a4c5210b10f84f97686583b5bc8e1511cfd1 (patch)
treee6163262377214d5719901932821e830333b3445
parent83f11b1c9ba55870a86aeae9f2e1719e0e1d074d (diff)
mention how LDFLAGS=-R can be used (or LD_LIBRARY_PATH or ld.so.conf)
-rw-r--r--docs/INSTALL14
1 files changed, 12 insertions, 2 deletions
diff --git a/docs/INSTALL b/docs/INSTALL
index 7b452cedb..1d6386089 100644
--- a/docs/INSTALL
+++ b/docs/INSTALL
@@ -79,8 +79,18 @@ UNIX
env CPPFLAGS="-I/path/to/ssl/include" LDFLAGS="-L/path/to/ssl/lib" \
./configure
- If your SSL library was compiled with rsaref (usually for use in the United
- States), you may also need to set:
+ If you have shared SSL libs installed in a directory where your run-time
+ linker doesn't find them (which usually causes configure failures), you can
+ provide the -R option to ld on some operating systems to set a hard-coded
+ path to the run-time linker:
+
+ LDFLAGS=-R/usr/local/ssl/lib ./configure --with-ssl
+
+ Another option to the previous trick, is to set LD_LIBRARY_PATH or edit the
+ /etc/ld.so.conf file.
+
+ If your SSL library was compiled with rsaref (this was common in the past
+ when used in the United States), you may also need to set:
LIBS=-lRSAglue -lrsaref
(as suggested by Doug Kaufman)