X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=configure.in;h=2e1e9efd5269c5f3e955d9239314e29ac1e66bff;hp=3194fe60d45cef35170821a5a0ae44a87359abb1;hb=c5e93e60f70e30fd61fc31c4625f51c3d567602d;hpb=21ea098609f18d524ca41b90b48d037f0703e04e diff --git a/configure.in b/configure.in index 3194fe60..2e1e9efd 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl -dnl $Id: configure.in,v 1.174 2012/10/12 11:17:48 fabiankeil Exp $ +dnl $Id: configure.in,v 1.178 2013/01/26 13:29:18 fabiankeil Exp $ dnl dnl Written by and Copyright (C) 2001-2010 the dnl Privoxy team. http://www.privoxy.org/ @@ -32,7 +32,7 @@ dnl ================================================================= dnl AutoConf Initialization dnl ================================================================= -AC_REVISION($Revision: 1.174 $) +AC_REVISION($Revision: 1.178 $) AC_INIT(jcc.c) if test ! -f config.h.in; then @@ -78,8 +78,8 @@ dnl ================================================================= VERSION_MAJOR=3 VERSION_MINOR=0 -VERSION_POINT=20 -CODE_STATUS="UNRELEASED" +VERSION_POINT=21 +CODE_STATUS="stable" dnl CODE_STATUS can be "alpha", "beta", "stable" or "UNRELEASED", dnl and will be used for CGI output. Increment version number and @@ -316,11 +316,10 @@ else fi AC_SUBST(WIN_ONLY) -dnl Checking which text html browser we have available if test $dodk != no; then - AC_CHECK_PROGS(WDUMP,w3m lynx links,false) - if test "$WDUMP" = false; then - AC_MSG_WARN(You need some kind of text browser to build documentation \(w3m, lynx and links are supported\)) + AC_CHECK_PROGS(W3M, w3m, false) + if test "$W3M" = false; then + AC_MSG_WARN(You need w3m to build text documentation.) fi if test $DB2HTML = false; then dnl We need to clean the variable, otherwise AC_CHECK_PROGS @@ -329,7 +328,7 @@ if test $dodk != no; then AC_CHECK_PROGS(DB2HTML,db2html docbook2html,false) fi fi -AC_SUBST(WDUMP) +AC_SUBST(W3M) AC_SUBST(DB2HTML) dnl If we use rpm, we need to check where %_topdir is