summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-11-13 13:10:26 +0000
committerCorinna Vinschen <corinna@vinschen.de>2014-11-13 13:10:26 +0000
commitd544f256d1c575f6358d6a9405f7906a5cfbce36 (patch)
treed7e39bc8eddf72f30bfc37cc08a05d48c9047827
parent8e0b17fb49397b5b94ea7a1920dc9b64323cece0 (diff)
downloadcygnal-d544f256d1c575f6358d6a9405f7906a5cfbce36.tar.gz
cygnal-d544f256d1c575f6358d6a9405f7906a5cfbce36.tar.bz2
cygnal-d544f256d1c575f6358d6a9405f7906a5cfbce36.zip
* include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 34.
* new-features.xml (ov-new1.7.34): Add new section. (ov-new1.7.33): Reflect intermediate 1.7.33 release.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/include/cygwin/version.h2
-rw-r--r--winsup/cygwin/release/1.7.3322
-rw-r--r--winsup/cygwin/release/1.7.3432
-rw-r--r--winsup/doc/ChangeLog5
-rw-r--r--winsup/doc/new-features.xml27
6 files changed, 57 insertions, 35 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index a4f2bd71f..62f4dcd12 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2014-11-13 Corinna Vinschen <corinna@vinschen.de>
+
+ * include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 34.
+
2014-11-12 Corinna Vinschen <corinna@vinschen.de>
* cygheap.h (cygheap_pwdgrp): Remove constants NSS_FILES and NSS_DB.
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h
index db19f8f18..ac67ecedc 100644
--- a/winsup/cygwin/include/cygwin/version.h
+++ b/winsup/cygwin/include/cygwin/version.h
@@ -43,7 +43,7 @@ details. */
changes to the DLL and is mainly informative in nature. */
#define CYGWIN_VERSION_DLL_MAJOR 1007
-#define CYGWIN_VERSION_DLL_MINOR 33
+#define CYGWIN_VERSION_DLL_MINOR 34
/* Major numbers before CYGWIN_VERSION_DLL_EPOCH are
incompatible. */
diff --git a/winsup/cygwin/release/1.7.33 b/winsup/cygwin/release/1.7.33
index 28eabfbb3..0875e48a9 100644
--- a/winsup/cygwin/release/1.7.33
+++ b/winsup/cygwin/release/1.7.33
@@ -1,18 +1,6 @@
What's new:
-----------
-- Cygwin can now generate passwd/group entries directly from Windows
- user databases (local SAM or Active Directory), thus allowing to run
- Cygwin without having to create /etc/passwd and /etc/group files.
- Introduce /etc/nsswitch.conf file to configure passwd/group handling.
-
- For bordercase which require to use /etc/passwd and /etc/group files,
- change mkpasswd/mkgroup to generate passwd/group entries compatible
- with the entries read from SAM/AD.
-
-- Add -b/--remove-all option to setfacl to reduce the ACL to only the
- entries representing POSIX permission bits.
-
- /proc/cygdrive is a new symlink pointing to the current cygdrive prefix.
This can be utilized in scripts to access paths via cygdrive prefix, even
if the cygdrive prefix has been changed by the user.
@@ -29,19 +17,12 @@ What's new:
- New API: stime (SVr4).
-- Provide Cygwin documentation (PDFs and HTML) for offline usage in
- /usr/share/doc/cygwin-${version}.
-
What changed:
-------------
- New internal exception handling based on SEH on 64 bit Cygwin.
-- Revamp Solaris ACL implementation to more closely work like POSIX ACLs
- are supposed to work. Finally implement a CLASS_OBJ emulation. Update
- getfacl(1)/setfacl(1) accordingly.
-
- When exec'ing applications, check if $PATH exists and is non-empty. If not,
add PATH variable with Cygwin installation directory as content to Windows
environment to allow loading of Cygwin system DLLs.
@@ -52,9 +33,6 @@ What changed:
- Doug Lea malloc implementation update from 2.8.3 to the latest 2.8.6.
-- The xdr functions are no longer exported for newly built executables.
- Use libtirpc-devel instead.
-
- atexit is now exported as statically linked function from libcygwin.a.
This allows reliable access to the DSO handle of the caller for newly
built executables. The former atexit entry point into the DLL remains
diff --git a/winsup/cygwin/release/1.7.34 b/winsup/cygwin/release/1.7.34
new file mode 100644
index 000000000..0f97b1a10
--- /dev/null
+++ b/winsup/cygwin/release/1.7.34
@@ -0,0 +1,32 @@
+What's new:
+-----------
+
+- Cygwin can now generate passwd/group entries directly from Windows
+ user databases (local SAM or Active Directory), thus allowing to run
+ Cygwin without having to create /etc/passwd and /etc/group files.
+ Introduce /etc/nsswitch.conf file to configure passwd/group handling.
+
+ For bordercase which require to use /etc/passwd and /etc/group files,
+ change mkpasswd/mkgroup to generate passwd/group entries compatible
+ with the entries read from SAM/AD.
+
+- Add -b/--remove-all option to setfacl to reduce the ACL to only the
+ entries representing POSIX permission bits.
+
+- Provide Cygwin documentation (PDFs and HTML) for offline usage in
+ /usr/share/doc/cygwin-${version}.
+
+
+What changed:
+-------------
+
+- Revamp Solaris ACL implementation to more closely work like POSIX ACLs
+ are supposed to work. Finally implement a CLASS_OBJ emulation. Update
+ getfacl(1)/setfacl(1) accordingly.
+
+- The xdr functions are no longer exported for newly built executables.
+ Use libtirpc-devel instead.
+
+
+Bug Fixes
+---------
diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog
index 15c9461fc..258c6dde1 100644
--- a/winsup/doc/ChangeLog
+++ b/winsup/doc/ChangeLog
@@ -1,3 +1,8 @@
+2014-11-13 Corinna Vinschen <corinna@vinschen.de>
+
+ * new-features.xml (ov-new1.7.34): Add new section.
+ (ov-new1.7.33): Reflect intermediate 1.7.33 release.
+
2014-11-07 Corinna Vinschen <corinna@vinschen.de>
* utils.xml (mkgroup): Align to changed usage.
diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml
index 05aa6c4e0..4e8d418d6 100644
--- a/winsup/doc/new-features.xml
+++ b/winsup/doc/new-features.xml
@@ -4,7 +4,7 @@
<sect1 id="ov-new1.7"><title>What's new and what changed in Cygwin</title>
-<sect2 id="ov-new1.7.33"><title>What's new and what changed in 1.7.33</title>
+<sect2 id="ov-new1.7.34"><title>What's new and what changed in 1.7.34</title>
<itemizedlist mark="bullet">
@@ -31,6 +31,20 @@ representing POSIX permission bits.
</para></listitem>
<listitem><para>
+Revamp Solaris ACL implementation to more closely work like POSIX ACLs
+are supposed to work. Finally implement a CLASS_OBJ emulation. Update
+getfacl(1)/setfacl(1) accordingly.
+</para></listitem>
+
+</itemizedlist>
+
+</sect2>
+
+<sect2 id="ov-new1.7.33"><title>What's new and what changed in 1.7.33</title>
+
+<itemizedlist mark="bullet">
+
+<listitem><para>
/proc/cygdrive is a new symlink pointing to the current cygdrive prefix.
This can be utilized in scripts to access paths via cygdrive prefix,
even if the cygdrive prefix has been changed by the user.
@@ -66,12 +80,6 @@ New internal exception handling based on SEH on 64 bit Cygwin.
</para></listitem>
<listitem><para>
-Revamp Solaris ACL implementation to more closely work like POSIX ACLs
-are supposed to work. Finally implement a CLASS_OBJ emulation. Update
-getfacl(1)/setfacl(1) accordingly.
-</para></listitem>
-
-<listitem><para>
When exec'ing applications, check if $PATH exists and is non-empty. If
not, add PATH variable with Cygwin installation directory as content to
Windows environment to allow loading of Cygwin system DLLs.
@@ -90,11 +98,6 @@ Doug Lea malloc implementation update from 2.8.3 to the latest 2.8.6.
</para></listitem>
<listitem><para>
-The xdr functions are no longer exported for newly built executables.
-Use libtirpc-devel instead.
-</para></listitem>
-
-<listitem><para>
atexit(3) is now exported as statically linked function from libcygwin.a.
This allows reliable access to the DSO handle of the caller for newly
built executables. The former atexit entry point into the DLL remains