aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-12-19 18:16:18 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-12-19 18:16:18 +0000
commite92622a345797c804be21c411555c5f16910771f (patch)
tree855d377f6fde606f2fe276c673650cb5005074c3 /configure
parent[w3m-dev 02672] (diff)
downloadw3m-e92622a345797c804be21c411555c5f16910771f.tar.gz
w3m-e92622a345797c804be21c411555c5f16910771f.zip
[w3m-dev 02655] print version and compile options
Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure27
1 files changed, 16 insertions, 11 deletions
diff --git a/configure b/configure
index 0e6c7ed..a8ea4f0 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: configure,v 1.36 2001/12/17 16:18:18 ukai Exp $
+# $Id: configure,v 1.37 2001/12/19 18:16:18 ukai Exp $
# Configuration.
#
@@ -555,22 +555,19 @@ else
def_param system_code x
fi
-# editing?
-ask_param "Use Lynx-like key binding as default" use_lynx_key n
-if [ "$use_lynx_key" = y ]; then
- keymap_file="keybind_lynx"
-else
- keymap_file="keybind"
-fi
-
-# terminal capabilities
if [ "$lang" = "JA" ]; then
ask_param "Use 2-byte character for table border, item, etc." kanji_symbols y
else
kanji_symbols=n
def_param kanji_symbols n
fi
-ask_param "ANSI color escape sequences support" use_ansi_color n
+
+ask_param "Use Lynx-like key binding as default" use_lynx_key n
+if [ "$use_lynx_key" = y ]; then
+ keymap_file="keybind_lynx"
+else
+ keymap_file="keybind"
+fi
if [ "$lang" = "JA" ]; then
if [ "$use_lynx_key" = y ]; then
@@ -694,9 +691,17 @@ fi
if [ "$use_ssl" = y ]; then
ask_param "SSL verification support (SSL library >= version 0.8)" use_ssl_verify n
else
+ use_ssl_verify=n
def_param "use_ssl_verify" n
fi
+if [ "$use_color" = y ]; then
+ ask_param "ANSI color escape sequences support" use_ansi_color n
+else
+ use_ansi_color=n
+ def_param "use_ansi_color" n
+fi
+
# protocols?
ask_param "NNTP support" use_nntp $include_opt
ask_param "Gopher support" use_gopher $include_opt