w3m is both a pager and a text-mode WWW browser. It can be used as a replacement for the BLFS TUI WWW browsers with support for images and other tags and divs.
imlib2 and Xorg Libraries
gdk-pixbuf, GPM, and m17n-1.8.6
Install w3m by running the following commands:
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-image=fb,x11 \
--with-imagelib=imlib2 &&
make
Now, as the root user:
make install &&
install -vDm644 doc/{HISTORY,READ*,keymap.*,menu.*,*.html} \
-t /usr/share/doc/w3m-0.5.5
--sysconfdir=/etc: This
parameter puts the configuration files in /etc.
--enable-image=fb,x11: This
parameter enables image support for the framebuffer and X11.
--with-imagelib=imlib2:
This parameter builds against the Imlib2 image library for image
support.