# HG changeset patch # User Vin Shelton # Date 1329138023 18000 # Node ID 611a6845ebeeecf74cb6f56bb15a1115e76affa9 # Parent 5bda701e9e7c0dff05fa01010e151be8e0c0dd10 Remove un-needed include of process.h in sysproc.h under cygwin. diff -r 5bda701e9e7c -r 611a6845ebee src/ChangeLog --- a/src/ChangeLog Sat Jan 14 12:16:05 2012 +0000 +++ b/src/ChangeLog Mon Feb 13 08:00:23 2012 -0500 @@ -1,3 +1,10 @@ +2012-02-12 Vin Shelton + + * sysproc.h: As of Cygwin 1.7.10, /usr/include/process.h has moved + to /usr/include/cygwin/process.h, so sysproc.h could no longer + find it. It wasn't needed anyway, so remove the include under + cygwin. + 2012-01-08 Aidan Kehoe * device-x.c: diff -r 5bda701e9e7c -r 611a6845ebee src/sysproc.h --- a/src/sysproc.h Sat Jan 14 12:16:05 2012 +0000 +++ b/src/sysproc.h Mon Feb 13 08:00:23 2012 -0500 @@ -30,8 +30,6 @@ #ifdef MINGW #include <../mingw/process.h> -#elif defined (CYGWIN) -#include <../include/process.h> #elif defined (WIN32_NATIVE) /* should not conflict with "process.h", as per ANSI definition. This is not true with visual c though. The trick below works with