aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-11-12 12:44:49 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-11-12 12:44:49 +0000
commitb1b21ada7a964103d1ec983b7f84d198ed086179 (patch)
tree8d8163589a82f9f38233b9bd1ccfdf473b48ec1b /configure
parentfix indent (diff)
downloadw3m-b1b21ada7a964103d1ec983b7f84d198ed086179.tar.gz
w3m-b1b21ada7a964103d1ec983b7f84d198ed086179.zip
[w3m-dev 03417] install_w3mimgdisplay
* configure: define install_w3mimgdisplay after use_w3mimg_fb determined From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rwxr-xr-xconfigure12
1 files changed, 7 insertions, 5 deletions
diff --git a/configure b/configure
index 06b8875..7800fc6 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: configure,v 1.85 2002/11/09 21:55:24 ukai Exp $
+# $Id: configure,v 1.86 2002/11/12 12:44:49 ukai Exp $
# Configuration.
#
@@ -819,7 +819,6 @@ ask_param "Inline image support" use_image n
if [ "$use_image" = y ]; then
def_use_image="#define USE_IMAGE"
imgtarget='$(IMGDISPLAY)'
- install_w3mimgdisplay='$(INSTALL_PROGRAM)'
ask_param "X11 inline image support (you need Imlib1 or GdkPixbuf library)" use_w3mimg_x11 y
d_w3mimg_fb=n
case $sysname in
@@ -830,9 +829,6 @@ if [ "$use_image" = y ]; then
ask_param "Linux Framebuffer inline image support (you need Imlib2 or GdkPixbuf)" use_w3mimg_fb $d_w3mimg_fb
if [ "$use_w3mimg_fb" = y ]; then
ask_param "setuid w3mimgdisplay to open /dev/fb0?" w3mimgdisplay_setuid y
- if [ "$w3mimgdisplay_setuid" = y ]; then
- install_w3mimgdisplay='$(INSTALL) -o root -m 4755 -s'
- fi
fi
;;
esac
@@ -2202,6 +2198,12 @@ if [ "$use_image" = y ]; then
echo "Disable Linux framebuffer inline image"
fi
fi
+ install_w3mimgdisplay='$(INSTALL_PROGRAM)'
+ if [ "$use_w3mimg_fb" = y ]; then
+ if [ "$w3mimgdisplay_setuid" = y ]; then
+ install_w3mimgdisplay='$(INSTALL) -o root -m 4755 -s'
+ fi
+ fi
fi
rm -f _zmachdep$extension _zmachdep.c _zmachdep.o