Declare the code 'beta' in preparation for the upcomming release
[privoxy.git] / configure.in
index 5d164b7..9567440 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl
-dnl $Id: configure.in,v 1.172 2012/10/12 11:12:22 fabiankeil Exp $
+dnl $Id: configure.in,v 1.175 2012/12/09 12:27:01 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.172 $)
+AC_REVISION($Revision: 1.175 $)
 AC_INIT(jcc.c)
 
 if test ! -f config.h.in; then
@@ -79,7 +79,7 @@ dnl =================================================================
 VERSION_MAJOR=3
 VERSION_MINOR=0
 VERSION_POINT=20
-CODE_STATUS="UNRELEASED"
+CODE_STATUS="beta"
 
 dnl CODE_STATUS can be "alpha", "beta", "stable" or "UNRELEASED",
 dnl and will be used for CGI output. Increment version number and
@@ -761,6 +761,7 @@ AC_CHECK_FUNCS([ \
  regcomp \
  select \
  setlocale \
+ shutdown \
  snprintf \
  socket \
  strchr \
@@ -967,6 +968,14 @@ AC_ARG_ENABLE(accept-filter,
   AC_DEFINE(FEATURE_ACCEPT_FILTER)
 fi])
 
+AC_ARG_ENABLE(strptime-sanity-checks,
+[  --enable-strptime-sanity-checks Only trust strptime() results if an additional strftime()/strptime()
+                                  conversion doesn't change the result. Can be useful if strptime() is
+                                  known or suspected to be broken.],
+[if test $enableval = yes; then
+  AC_DEFINE(FEATURE_STRPTIME_SANITY_CHECKS)
+fi])
+
 dnl pcre/pcrs is needed for CGI anyway, so
 dnl the choice is only between static and
 dnl dynamic: