diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-03-13 17:04:56 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-03-13 17:04:56 +0000 |
commit | b118dd18d3e0b3829e6814af684e30d683b7e67d (patch) | |
tree | 2bc798345dccf998435a18c7d3ce6caf1c9a2e79 /configure | |
parent | [w3m-dev 03126] reshapeBuffer() and -m option (diff) | |
download | w3m-b118dd18d3e0b3829e6814af684e30d683b7e67d.tar.gz w3m-b118dd18d3e0b3829e6814af684e30d683b7e67d.zip |
[w3m-dev 03127] X-Face
* NEWS: X-Face support
* configure (use_xface): added
* config.h.dist (USE_XFACE): added
(XFACE2XBM): added
* file.c (xface2xbm): added
(readHeader): X-Face: handling
* scripts/Makefile (LIB_TARGETS): add xface2xbm
* scripts/xface2xbm.in: added
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.63 2002/03/06 03:32:10 ukai Exp $ +# $Id: configure,v 1.64 2002/03/13 17:04:56 ukai Exp $ # Configuration. # @@ -770,6 +770,7 @@ 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 @@ -2127,6 +2128,7 @@ $def_use_gopher $def_use_alarm $def_use_image $def_use_help_cgi +$def_use_xface #define DEF_EDITOR "$editor" #define DEF_MAILER "$mailer" @@ -2147,6 +2149,7 @@ $def_use_help_cgi #define W3MCONFIG "w3mconfig" #define IMGSIZE "w3mimgsize" #define IMGDISPLAY "w3mimgdisplay" +#define XFACE2XBM "xface2xbm" #define RC_DIR "~/.w3m" #define BOOKMARK "bookmark.html" |