From: Amos Jeffries Date: Sun, 1 Dec 2013 07:12:31 +0000 (-0700) Subject: Portability: refresh_pattern requires regex X-Git-Tag: SQUID_3_5_0_1~484 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09a86349b6eeb9ce96105814273ee5fa52991d8a;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 {