diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-03-14 16:12:02 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-03-14 16:12:02 +0000 |
commit | 739eb5f7ab4d8d10e054ba80813bc1d9e3307450 (patch) | |
tree | 16824ac9f18cd2fa93458381c83d4579fa047761 /configure | |
parent | * proto.h (readHeader): added (diff) | |
download | w3m-739eb5f7ab4d8d10e054ba80813bc1d9e3307450.tar.gz w3m-739eb5f7ab4d8d10e054ba80813bc1d9e3307450.zip |
[w3m-dev 03129] Re: X-Face
* configure (use_xface): ask
* fm.h (_Buffer): add header_source
* buffer.c (reshapeBuffer): fix reshape when reading stdin with image
fix disappearing header when reading stdin
* file.c (xface2xbm): check file existence
* file.c (readHeader): save to tmp file
X-Face when activeImage & displayImage
* main.c (dispI): comment out checking content type
* main.c (stopI): ditto
* scripts/xface2xbm.in: update compface URL
read from file $XF
write to file $XBM
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.64 2002/03/13 17:04:56 ukai Exp $ +# $Id: configure,v 1.65 2002/03/14 16:12:06 ukai Exp $ # Configuration. # @@ -754,6 +754,11 @@ ask_param "Gopher support" use_gopher $include_opt ask_param "Use alarm support code" use_alarm $include_opt ask_param "Use mark operation" use_mark $include_opt +if [ "$use_image" = y ]; then + ask_param "X-Face support (you need uncompface)" use_xface n +else + use_xface=n +fi ### only use config.param def_param use_dict n @@ -770,7 +775,6 @@ def_param vi_prec_num $include_opt def_param label_topline $include_opt def_param nextpage_topline $include_opt def_param ftppass_hostnamegen $include_opt -def_param use_xface $use_image def_param table_expand n def_param table_no_compact n |