Re: [squid-dev] [PATCH] remove old GnuRegex third-party code

2015-07-28 Thread Alex Rousskov
On 07/28/2015 06:51 AM, Amos Jeffries wrote: > The attached patch replaces all Squid code uses of regex.h C API with > std::regex C++ API and drops the libregex related detections from > ./configure > * In the present day all systems using C++11 provide a std::regex API > from the STL. This mean

Re: [squid-dev] [PATCH] remove old GnuRegex third-party code

2015-07-28 Thread Amos Jeffries
On 29/07/2015 3:39 a.m., Alex Rousskov wrote: > On 07/28/2015 06:51 AM, Amos Jeffries wrote: > >> The attached patch replaces all Squid code uses of regex.h C API with >> std::regex C++ API and drops the libregex related detections from >> ./configure > > >> * In the present day all systems usin

Re: [squid-dev] [PATCH] remove old GnuRegex third-party code

2015-07-29 Thread Amos Jeffries
Small change of plans. I have separated the SourceLayout related code shuffling and polish from the std::regex and GnuRegex swap. The SourceLayout parts have now been applied as trunk rev.14189. The remainder will have to wait until the GCC situation Alex pointed out is resolved. Amos _

Re: [squid-dev] [PATCH] remove old GnuRegex third-party code

2015-07-30 Thread Amos Jeffries
On 29/07/2015 7:35 p.m., Amos Jeffries wrote: > Small change of plans. I have separated the SourceLayout related code > shuffling and polish from the std::regex and GnuRegex swap. > > The SourceLayout parts have now been applied as trunk rev.14189. > > The remainder will have to wait until the GC