2. See ./config script line 663 and below and speculate why do you think it doesn't recognize your system as ELF? Maybe shared libraries reside in /shlib?

Hmm, file(1) doesn't follow symlinks by default.
How about to use -L option?

 % file /usr/lib/libc.so.12.129
 /usr/lib/libc.so.12.129: symbolic link to `../../lib/libc.so.12.129'
 % file -L /usr/lib/libc.so.12.129
 /usr/lib/libc.so.12.129: ELF 32-bit LSB shared object, Intel 80386, version 1 
(SYSV), not stripped

But note that it uses 'ls /usr/lib/libc.so.* /lib/libc.so.* | tail -1', which in your case should result in /lib/libc.so.12.129. Is /lib/libc.so.12.129 symbolic link too and if so where does it point? A.


You missed that ls sorts the result :)

  % ls /usr/lib/libc.so.* /lib/libc.so.* | cat
  /lib/libc.so.12@
  /lib/libc.so.12.125
  /lib/libc.so.12.129
  /usr/lib/libc.so.12@
  /usr/lib/libc.so.12.125@
  /usr/lib/libc.so.12.129@

please verify http://cvs.openssl.org/chngview?cn=14073. a.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to