From fc3f6ccafa159262861e29fbc16f4c14f93f376f Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 5 Oct 2013 14:34:41 +0000 Subject: [PATCH] * ntdll.h: Guard against new header files. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/ntdll.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 29b26a9dc..1b337ce89 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2013-10-05 Christopher Faylor + + * ntdll.h: Guard against new header files. + 2013-09-25 Christopher Faylor * include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 26. diff --git a/winsup/cygwin/ntdll.h b/winsup/cygwin/ntdll.h index c67a775ec..0ba907a83 100644 --- a/winsup/cygwin/ntdll.h +++ b/winsup/cygwin/ntdll.h @@ -69,7 +69,9 @@ #define SYMBOLIC_LINK_QUERY 1 /* Transaction access rights. */ +#ifndef TRANSACTION_ALL_ACCESS #define TRANSACTION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | 0x3F) +#endif /* Event object access rights. */ #define EVENT_QUERY_STATE 1