Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2013-10-05 18:34:41 +0400
committerChristopher Faylor <me@cgf.cx>2013-10-05 18:34:41 +0400
commitfc3f6ccafa159262861e29fbc16f4c14f93f376f (patch)
treed5af64cc75cac180aa17f69e4759494f53651d0d /winsup
parente828abfaeaff0659198351be524f3a674526ad46 (diff)
* ntdll.h: Guard against new header files.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/ntdll.h2
2 files changed, 6 insertions, 0 deletions
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 <me.cygwin2013@cgf.cx>
+
+ * ntdll.h: Guard against new header files.
+
2013-09-25 Christopher Faylor <me.cygwin2013@cgf.cx>
* 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