Enable FEATURE_CLIENT_TAGS by default
authorFabian Keil <fk@fabiankeil.de>
Sat, 9 Apr 2016 10:22:26 +0000 (10:22 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sat, 9 Apr 2016 10:22:26 +0000 (10:22 +0000)
... to increase the chances that users of third-party binary
packages actually get it.

While it's an experimental feature, by default no client-specific
tags are defined so the risk seems acceptable.

configure.in

index 520559b..2b0452e 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl
 dnl Process this file with autoconf to produce a configure script.
 dnl
-dnl $Id: configure.in,v 1.193 2016/03/30 11:15:42 fabiankeil Exp $
+dnl $Id: configure.in,v 1.194 2016/04/06 12:39:04 fabiankeil Exp $
 dnl
 dnl Written by and Copyright (C) 2001-2014 the
 dnl Privoxy team. http://www.privoxy.org/
 dnl
 dnl Written by and Copyright (C) 2001-2014 the
 dnl Privoxy team. http://www.privoxy.org/
@@ -32,7 +32,7 @@ dnl =================================================================
 dnl AutoConf Initialization
 dnl =================================================================
 
 dnl AutoConf Initialization
 dnl =================================================================
 
-AC_REVISION($Revision: 1.193 $)
+AC_REVISION($Revision: 1.194 $)
 AC_INIT(jcc.c)
 
 if test ! -f config.h.in; then
 AC_INIT(jcc.c)
 
 if test ! -f config.h.in; then
@@ -982,13 +982,17 @@ AC_ARG_ENABLE(strptime-sanity-checks,
   AC_DEFINE(FEATURE_STRPTIME_SANITY_CHECKS)
 fi])
 
   AC_DEFINE(FEATURE_STRPTIME_SANITY_CHECKS)
 fi])
 
-FEATURE_CLIENT_TAGS_ONLY="#"
 AC_ARG_ENABLE(client-tags,
 AC_ARG_ENABLE(client-tags,
-[  --enable-client-tags                Enable client-specific tags],
-[if test $enableval = yes; then
+[  --disable-client-tags           Disable support for client-specific tags],
+[ if test $enableval = "no"; then have_client_tags=no; fi ])
+if test "${have_client_tags}" = "no"; then
+  echo "Disabling support for client-specific tags."
+  FEATURE_CLIENT_TAGS_ONLY="#"
+else
+  echo "Enabling support for client-specific tags."
+  AC_DEFINE(FEATURE_CLIENT_TAGS,1,[Define to enable support for client-specific tags.])
   FEATURE_CLIENT_TAGS_ONLY=""
   FEATURE_CLIENT_TAGS_ONLY=""
-  AC_DEFINE(FEATURE_CLIENT_TAGS,1,[Define to enable client-specific tags.])
-fi])
+fi
 AC_SUBST(FEATURE_CLIENT_TAGS_ONLY)
 
 dnl pcre/pcrs is needed for CGI anyway, so
 AC_SUBST(FEATURE_CLIENT_TAGS_ONLY)
 
 dnl pcre/pcrs is needed for CGI anyway, so