diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-15 03:45:02 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-01-15 03:45:02 +0000 |
commit | 0b5a17e5c0412edc6f59dc59ab7558a213d94a1d (patch) | |
tree | 3c33e4b3fa6347c0a619d0efc8c13d9b1c179a1b /configure | |
parent | [w3m-dev 02833] ssl_forbid_method in SSL Setting (diff) | |
download | w3m-0b5a17e5c0412edc6f59dc59ab7558a213d94a1d.tar.gz w3m-0b5a17e5c0412edc6f59dc59ab7558a213d94a1d.zip |
[w3m-dev 02834] mailto: use external program
Diffstat (limited to '')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.48 2002/01/14 15:59:17 ukai Exp $ +# $Id: configure,v 1.49 2002/01/15 03:45:02 ukai Exp $ # Configuration. # @@ -699,6 +699,9 @@ fi # protocols? ask_param "External URI loader support" use_external_uri_loader y +if [ "$use_external_uri_loader" = y ]; then + ask_param "Use w3mmail.cgi" use_w3mmailer y +fi ask_param "NNTP support" use_nntp $include_opt ask_param "Gopher support" use_gopher $include_opt @@ -2046,6 +2049,7 @@ $def_use_ssl $def_use_ssl_verify $def_ftppass_hostnamegen $def_use_external_uri_loader +$def_use_w3mmailer $def_use_nntp $def_use_gopher $def_use_alarm |