diff options
| author | Tatsuya Kinoshita <tats@debian.org> | 2020-10-24 06:18:02 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2020-10-24 06:18:02 +0000 | 
| commit | dfd4f1fcdaf1604ebb461c8b7e2282e69c33f416 (patch) | |
| tree | 923e5104e364204afe7d2c4b480a1feea906f735 | |
| parent | Merge pull request #152 from bptato/master (diff) | |
| download | w3m-dfd4f1fcdaf1604ebb461c8b7e2282e69c33f416.tar.gz w3m-dfd4f1fcdaf1604ebb461c8b7e2282e69c33f416.zip | |
Enable Gopher support by default
| -rw-r--r-- | acinclude.m4 | 4 | ||||
| -rwxr-xr-x | configure | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/acinclude.m4 b/acinclude.m4 index ed1035d..28a8aa6 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -125,8 +125,8 @@ AC_DEFUN([AC_W3M_GOPHER],  [AC_SUBST(USE_GOPHER)   AC_MSG_CHECKING(if gopher is enabled)   AC_ARG_ENABLE(gopher, -  [  --enable-gopher		enable GOPHER],, -  [enable_gopher="no"]) +  [  --disable-gopher		disable GOPHER],, +  [enable_gopher="yes"])   test x"$enable_gopher" = xyes &&  AC_DEFINE(USE_GOPHER)   AC_MSG_RESULT($enable_gopher)])  # @@ -1460,7 +1460,7 @@ Optional Features:    --disable-alarm		disable alarm    --disable-cookie		disable cookie    --disable-nntp		disable NNTP -  --enable-gopher		enable GOPHER +  --disable-gopher		disable GOPHER    --disable-dict		disable dictionary lookup (see README.dict)    --disable-help-cgi		disable help cgi    --disable-external-uri-loader	disable external URI loader @@ -7220,7 +7220,7 @@ $as_echo_n "checking if gopher is enabled... " >&6; }  if test "${enable_gopher+set}" = set; then :    enableval=$enable_gopher;  else -  enable_gopher="no" +  enable_gopher="yes"  fi   test x"$enable_gopher" = xyes &&  $as_echo "#define USE_GOPHER 1" >>confdefs.h | 
