[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>
This commit is contained in:
Fumitoshi UKAI
2002-07-18 05:55:22 +00:00
parent d49f511002
commit 81bdcbcbe0
2 changed files with 14 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
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> 2002-07-18 Fumitoshi UKAI <ukai@debian.or.jp>
* merge w3m-img for framebuffer support * merge w3m-img for framebuffer support
@@ -3582,4 +3587,4 @@
* release-0-2-1 * release-0-2-1
* import w3m-0.2.1 * import w3m-0.2.1
$Id: ChangeLog,v 1.403 2002/07/17 21:21:56 ukai Exp $ $Id: ChangeLog,v 1.404 2002/07/18 05:55:22 ukai Exp $

12
configure vendored
View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# $Id: configure,v 1.70 2002/07/17 20:58:48 ukai Exp $ # $Id: configure,v 1.71 2002/07/18 05:55:22 ukai Exp $
# Configuration. # Configuration.
# #
@@ -793,10 +793,14 @@ if [ "$use_image" = y ]; then
imgtarget='$(IMGDISPLAY) $(IMGSIZE)' imgtarget='$(IMGDISPLAY) $(IMGSIZE)'
ask_param "X11 inline image support (you need Imlib1 library)" use_w3mimg_x11 y ask_param "X11 inline image support (you need Imlib1 library)" use_w3mimg_x11 y
d_w3mimg_fb=n 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 d_w3mimg_fb=y
fi fi
ask_param "Linux Framebuffer inline image support (you need Imlib2 or GdkPixbuf)" use_w3mimg_fb $d_w3mimg_fb ask_param "Linux Framebuffer inline image support (you need Imlib2 or GdkPixbuf)" use_w3mimg_fb $d_w3mimg_fb
;;
esac
else else
def_use_image="#undef USE_IMAGE" def_use_image="#undef USE_IMAGE"
imgtarget='' imgtarget=''