-------------------------------------------- El sáb, 24/5/14, Bruce Dubbs <[email protected]> escribió:
Asunto: Re: [blfs-support] lynx this client does not contain support for https urls BLFS 7.5 Para: "BLFS Support List" <[email protected]> Fecha: sábado, 24 de mayo, 2014 23:38 ortenzia konyha wrote: > Dear BLFS, > while trying to connect to https urls such as www.gmail.com www.hotmail.com mail.yahoo.com lynx answer is: > this client does not contain support for https urls > I have compiled lynx --with-ssl=/usr/inlcude/openssl/ssl.h > --enable-nls > I have installed the Cerfiicates in my /etc/ssl/certs > However it does not connect to https sites > > My uname -a is Linux hostname 3.13.3 > (BLFS-7.5) > Lynx version 2.8.8rel.2(09 Mar 2014) > OpenSSL version: OpenSSL 1-0-1g 7 Apr 2014 > > I have found some old mailiing (year 1998) and a newer one but does not seem to find any solution (http://comments.gmane.org/gmane.comp.web.lynx.devel/7483) about lynx not supporting https, but I guess the problem is in my configuration. > Can you please tell me how to know if I have lynx with ssl installed properly? Take a look at the required libraries. You should have something like: $ ldd /usr/bin/lynx linux-vdso.so.1 (0x00007fffae5ff000) libz.so.1 => /lib/libz.so.1 (0x00007fc7004ea000) libbz2.so.1.0 => /lib/libbz2.so.1.0 (0x00007fc7002da000) libidn.so.11 => /usr/lib/libidn.so.11 (0x00007fc7000a8000) libncursesw.so.5 => /lib/libncursesw.so.5 (0x00007fc6ffe46000) libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0 (0x00007fc6ffbdb000) libcrypto.so.1.0.0 => /usr/lib/libcrypto.so.1.0.0 (0x00007fc6ff7f6000) libc.so.6 => /lib/libc.so.6 (0x00007fc6ff44e000) libdl.so.2 => /lib/libdl.so.2 (0x00007fc6ff24a000) /lib64/ld-linux-x86-64.so.2 (0x00007fc700702000) So this is what I have in my ldd /usr/bin/lynx linux-gate.so.1 libz.so.1 libbz2.so.1.0 libncursew.so.5 libc.so.6 /lib/ld-linux.so.2 and in my ldd /usr/bin/openssl linux-gate.so.1 libssl.so.1.0.0 libcrypto.so.1.0.0 libl.so.2 libc.so.6 /lib/ld-linux.so.2 this is the command I used to compile it wiht ssl ./configure --prefix=/usr \ --sysconfdir=/etc/lynx \ --datadir=/usr/share/doc/lynx-2.8.8 \ --with-zlib \ --with-bzlib \ --with-screen=ncursesw \ --enable.nls\ --with-ssl=/usr/include//openssl/ssl.h\ --enable-locale-charset && make Maybe I shoudl change the path to with-ssl=/usr/lib/libssl.so.1.0.0 ?? thank you in advance, -- Bruce -- http://lists.linuxfromscratch.org/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page -- http://lists.linuxfromscratch.org/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
