aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-07-18 05:55:22 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-07-18 05:55:22 +0000
commit81bdcbcbe0c30f8934725bc7f1bbb8bcc85ad51c (patch)
tree8895aa7f9f8fc06e621404e0ab6640e4b2536d96 /configure
parentwrong address (diff)
downloadw3m-81bdcbcbe0c30f8934725bc7f1bbb8bcc85ad51c.tar.gz
w3m-81bdcbcbe0c30f8934725bc7f1bbb8bcc85ad51c.zip
[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 (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 8 insertions, 4 deletions
diff --git a/configure b/configure
index 7e13e68..b0257f7 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/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.
#
@@ -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=''