From: Amos Jeffries Date: Fri, 6 Dec 2013 12:14:34 +0000 (-0700) Subject: Portability: refresh_pattern requires regex X-Git-Tag: SQUID_3_4_1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c32ce685ae8a7f90287b8e2e4530997892b5f541;p=thirdparty%2Fsquid.git Portability: refresh_pattern requires regex The GnuRegex portability wrapper is required explicitly by RefreshPattern.h on some systems which do not include regex.h implicitly via other paths. This is an iCelero project --- diff --git a/src/RefreshPattern.h b/src/RefreshPattern.h index d14e1f1e86..49d4e9f0af 100644 --- a/src/RefreshPattern.h +++ b/src/RefreshPattern.h @@ -29,6 +29,8 @@ * */ +#include "compat/GnuRegex.h" + /// a representation of a refresh pattern. Currently a POD. class RefreshPattern {