Mercurial > hg > xemacs-beta
changeset 5643:611a6845ebee
Remove un-needed include of process.h in sysproc.h under cygwin.
author | Vin Shelton <acs@xemacs.org> |
---|---|
date | Mon, 13 Feb 2012 08:00:23 -0500 |
parents | 5bda701e9e7c |
children | 0df3cedee9ac |
files | src/ChangeLog src/sysproc.h |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <acs@xemacs.org> + + * 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 <kehoea@parhasard.net> * device-x.c:
--- 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) /* <process.h> should not conflict with "process.h", as per ANSI definition. This is not true with visual c though. The trick below works with