Add a more verbose description for the --enable-extended-host-patterns option.
authorFabian Keil <fk@fabiankeil.de>
Sat, 7 Nov 2009 13:44:43 +0000 (13:44 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sat, 7 Nov 2009 13:44:43 +0000 (13:44 +0000)
As #2892308 shows, the old one wasn't particularly helpful.

configure.in

index 7d33dc0..d84de50 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl 
-dnl $Id: configure.in,v 1.138 2009/10/10 05:47:52 fabiankeil Exp $
+dnl $Id: configure.in,v 1.139 2009/10/24 11:11:33 fabiankeil Exp $
 dnl 
 dnl Written by and Copyright (C) 2001-2009 the
 dnl Privoxy team. http://www.privoxy.org/
@@ -32,7 +32,7 @@ dnl =================================================================
 dnl AutoConf Initialization
 dnl =================================================================
 
-AC_REVISION($Revision: 1.138 $)
+AC_REVISION($Revision: 1.139 $)
 AC_INIT(jcc.c)
 
 if test ! -f config.h.in; then
@@ -837,7 +837,13 @@ AC_ARG_ENABLE(graceful-termination,
 fi])
 
 AC_ARG_ENABLE(extended-host-patterns,
-[  --enable-extended-host-patterns Allow extended regular expressions in host patterns.],
+[  --enable-extended-host-patterns Enable and require PCRE syntax in host patterns. This feature hasn't
+                                  been announced yet and it's not clear if it's a good idea. It's expected
+                                  to work, but undocumented. You should only enable it if you know what
+                                  PCRE is and are sure that you need it for your host patterns. You can
+                                  use tools/url-pattern-translator.pl to convert existing action files to
+                                  use PCRE host patterns. Please don't enable this option when creating
+                                  packages for others that may not be expecting it.],
 [if test $enableval = yes; then
   AC_DEFINE(FEATURE_EXTENDED_HOST_PATTERNS)
 fi])