diff options
| author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-06 03:50:48 +0000 | 
|---|---|---|
| committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-06 03:50:48 +0000 | 
| commit | eee9736e27aae251515c194190301dcc50055c57 (patch) | |
| tree | a0fe2a795b130d355f4b4ff74a8e0a94e01ef1fd /configure | |
| parent | [w3m-dev 03377] sync_with_option (diff) | |
| download | w3m-eee9736e27aae251515c194190301dcc50055c57.tar.gz w3m-eee9736e27aae251515c194190301dcc50055c57.zip | |
[w3m-dev 03379] setuid w3mimgdisplay and check console tty
* XMakefile: w3mimgdisplay install by INSTALL_W3MIMGDISPLAY
* configure: ask setuid w3mimgdisplay
	(w3mimgdisplay_setuid): added
	(INSTALL_W3MIMGDISPLAY): added
* etc.c (mySystem): close until FOPEN_MAX
* image.c (openImgdisplay): setenv W3M_TTY
		stderr to /dev/null
		close until FOPEN_MAX
* install-sh: -o, -g for owner, group
* proto.h (ttyname_tty): added
* search.c (open_migemo): stderr to /dev/null
		close until FOPEN_MAX
* terms.c (ttyname_tty): added
* w3mimgdisplay.c: include <sys/types.h>, <unistd.h>
		W3MIMGDISPLAY_SETUID
		stderr to /dev/null
* w3mimg/w3mimg.c: include <sys/types.h>, <unistd.h>
		W3MIMGDISPLAY_SETUID
* w3mimg/fb/fb_w3mimg.c (check_tty_console): added
From: Fumitoshi UKAI  <ukai@debian.or.jp>
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 12 | 
1 files changed, 11 insertions, 1 deletions
| @@ -1,5 +1,5 @@  #!/bin/sh -# $Id: configure,v 1.82 2002/11/05 15:56:12 ukai Exp $ +# $Id: configure,v 1.83 2002/11/06 03:50:49 ukai Exp $  #	Configuration.  # @@ -806,6 +806,14 @@ if [ "$use_image" = y ]; then        d_w3mimg_fb=y      fi      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' +	else +	    INSTALL_W3MIMGDISPLAY='$(INSTALL_PROGRAM)' +	fi +    fi      ;;    esac  else @@ -2319,6 +2327,7 @@ MKDIR=$MKDIR  PERL=$perl  VERSION=$w3mversion  MODEL=$sysname.$platform-$modelname-$lang +INSTALL_W3MIMGDISPLAY=$INSTALL_W3MIMGDISPLAY  #else  $special_sys @@ -2354,6 +2363,7 @@ $def_use_alarm  $def_use_image  $def_use_w3mimg_x11  $def_use_w3mimg_fb +$def_w3mimgdisplay_setuid  $def_use_imlib  $def_use_gdkpixbuf  $def_use_imlib2 | 
