Re: [libstdc++-v3] Add configure check for S_ISSOCK

2017-11-07 Thread Jonathan Wakely
On 07/11/17 21:00 +0200, Andris Pavenis wrote: On 11/07/2017 08:28 PM, Jonathan Wakely wrote: On 07/11/17 19:26 +0200, Andris Pavenis wrote: src/filesystem/ops-common.c uses S_ISSOCK unconditionally without checking that it is available As result compile fails for DJGPP when S_ISREG is availa

Re: [libstdc++-v3] Add configure check for S_ISSOCK

2017-11-07 Thread Andris Pavenis
On 11/07/2017 08:28 PM, Jonathan Wakely wrote: On 07/11/17 19:26 +0200, Andris Pavenis wrote: src/filesystem/ops-common.c uses S_ISSOCK unconditionally without checking that it is available As result compile fails for DJGPP when S_ISREG is available but S_ISSOCK is not. Included patch add con

Re: [libstdc++-v3] Add configure check for S_ISSOCK

2017-11-07 Thread Jonathan Wakely
On 07/11/17 19:26 +0200, Andris Pavenis wrote: src/filesystem/ops-common.c uses S_ISSOCK unconditionally without checking that it is available As result compile fails for DJGPP when S_ISREG is available but S_ISSOCK is not. Included patch add configure check for S_ISSOCK Andris ChangeLog en

[libstdc++-v3] Add configure check for S_ISSOCK

2017-11-07 Thread Andris Pavenis
src/filesystem/ops-common.c uses S_ISSOCK unconditionally without checking that it is available As result compile fails for DJGPP when S_ISREG is available but S_ISSOCK is not. Included patch add configure check for S_ISSOCK Andris ChangeLog entry: 2017-11-07  Andris Pavenis     * acinclud