w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit a40209bb0c7263e5dcc4be7e40471279f380d0ba
parent 5369c723c1612728508c86b4d172f13e888521e6
Author: ukai <ukai>
Date:   Thu, 18 Jul 2002 05:55:22 +0000

[w3m-dev 03273] Re: w3m-img for framebuffer merged
* configure (use_w3mimg_fb): check linux, use test -c
From: Fumitoshi UKAI  <ukai@debian.or.jp>

Diffstat:
MChangeLog | 5+++++
Mconfigure | 10+++++++---
2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,5 +1,10 @@ 2002-07-18 Fumitoshi UKAI <ukai@debian.or.jp> + * [w3m-dev 03273] Re: w3m-img for framebuffer merged + * configure (use_w3mimg_fb): check linux, use test -c + +2002-07-18 Fumitoshi UKAI <ukai@debian.or.jp> + * merge w3m-img for framebuffer support * w3mimg/w3mimg.h: created * w3mimg/x11/x11_w3mimg.c: created diff --git a/configure b/configure @@ -793,10 +793,14 @@ if [ "$use_image" = y ]; then imgtarget='$(IMGDISPLAY) $(IMGSIZE)' ask_param "X11 inline image support (you need Imlib1 library)" use_w3mimg_x11 y d_w3mimg_fb=n - if test -e /dev/fb0; then + case $sysname in + Linux|linux|LINUX) + if test -c /dev/fb0; then d_w3mimg_fb=y - fi - ask_param "Linux Framebuffer inline image support (you need Imlib2 or GdkPixbuf)" use_w3mimg_fb $d_w3mimg_fb + fi + ask_param "Linux Framebuffer inline image support (you need Imlib2 or GdkPixbuf)" use_w3mimg_fb $d_w3mimg_fb + ;; + esac else def_use_image="#undef USE_IMAGE" imgtarget=''