Re: [PATCH] regex: fix for kernel cross-compile

2012-06-11 Thread Christopher Faylor
On Mon, Jun 11, 2012 at 03:58:36PM -0500, Yaakov (Cygwin/X) wrote: >The attached patch fixes the issue I reported previously: > >http://cygwin.com/ml/cygwin/2012-06/msg00161.html > >According to POSIX[1], a '|' following '(' produces undefined results. >However, glibc and PCRE both allow the regex

[PATCH] regex: fix for kernel cross-compile

2012-06-11 Thread Yaakov (Cygwin/X)
The attached patch fixes the issue I reported previously: http://cygwin.com/ml/cygwin/2012-06/msg00161.html According to POSIX[1], a '|' following '(' produces undefined results. However, glibc and PCRE both allow the regex in question, so there is basis for omitting this error. I believe thi