Displaying 2 results from an estimated 2 matches for "20audit".
Did you mean:
20audio
2002 Jun 12
1
[Bug 254] Problems building.
...om.au 2002-06-12 23:25 -------
What C compiler are you using? There's a bug in some versions of gcc that causes
it to pick up -L link paths last, so it might be picking up libcrypto from
/usr/lib and the headers from /usr/local/ssl/include. See:
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=326
Try this:
$ LIBRARY_PATH=/usr/local/ssl/lib:/usr/lib:/usr/local/lib
$ export LIBRARY_PATH
$ ./configure [options]
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Jun 09
3
[Bug 269] OpenSSH doesn't compile with dynamic OpenSSL libraries
...to this bug report).
If you're using gcc then there is a bug in 2.95.2 (and possibly others) that
caused the -L link paths to be searched last, so if you've got an older
libcrypto somewhere (eg /usr/local/lib) it'll pick that up. See:
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=32
6
If that's your problem you can override -L by setting you LIBRARY_PATH
environment variable.
For what it's worth, what you're doing works on my Sol8/gcc-3.1 box:
$ ./configure --with-ssl-dir=/opt/src/openssl-0.9.6d && make ssh
[snip]
$ ldd s...