Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 20636 - use ssl doesn't work with w3m-0.4.1.ebuild (Patch)
Summary: use ssl doesn't work with w3m-0.4.1.ebuild (Patch)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Patrick Kursawe (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-05-08 11:23 UTC by Mamoru KOMACHI (RETIRED)
Modified: 2003-05-12 06:10 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
w3m-0.4.1-r1.patch (w3m-0.4.1-r1.patch,425 bytes, patch)
2003-05-08 11:24 UTC, Mamoru KOMACHI (RETIRED)
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mamoru KOMACHI (RETIRED) gentoo-dev 2003-05-08 11:23:05 UTC
Hi.

I submitted w3m-0.4.1.ebuild not so long ago but found that use ssl
doesn't work with it today. Here is a patch to fix this problem.
Comment 1 Mamoru KOMACHI (RETIRED) gentoo-dev 2003-05-08 11:24:25 UTC
Created attachment 11691 [details, diff]
w3m-0.4.1-r1.patch
Comment 2 Patrick Kursawe (RETIRED) gentoo-dev 2003-05-12 04:19:30 UTC
Ooopsie.. thanks.
Btw, I wonder why ldd says nothing about imlib - does it link image libraries statically? Any idea why? Didn't find any obvious hints in Makefile or configure, I think you know them better...
Comment 3 Mamoru KOMACHI (RETIRED) gentoo-dev 2003-05-12 05:28:07 UTC
Thank you.

w3m utilises w3mimgdisplay (/usr/lib/w3m/w3mimgdisplay) instead of
w3m (/usr/bin/w3m) itself to display images correctly, so if you 
ldd to that binary you will get something like this:

rico% ldd /usr/lib/w3m/w3mimgdisplay
        libImlib.so.1 => /usr/lib/libImlib.so.1 (0x40020000)
        libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0x40049000)
        libtiff.so.3 => /usr/lib/libtiff.so.3 (0x40065000)
        libgif.so.4 => /usr/lib/libgif.so.4 (0x400a9000)
        libpng.so.3 => /usr/lib/libpng.so.3 (0x400b1000)
        libz.so.1 => /usr/lib/libz.so.1 (0x400da000)
        libm.so.6 => /lib/libm.so.6 (0x400e9000)
        libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x4010b000)
        libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x40118000)
        libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40121000)
        libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x40138000)
        libc.so.6 => /lib/libc.so.6 (0x4020f000)
        libdl.so.2 => /lib/libdl.so.2 (0x4033e000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)

Does it help you?
Comment 4 Patrick Kursawe (RETIRED) gentoo-dev 2003-05-12 06:10:30 UTC
Exactly what I was looking for. Thanks.