* 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.
This commit is contained in:
parent
8e0b17fb49
commit
d544f256d1
@ -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>
|
2014-11-12 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygheap.h (cygheap_pwdgrp): Remove constants NSS_FILES and NSS_DB.
|
* cygheap.h (cygheap_pwdgrp): Remove constants NSS_FILES and NSS_DB.
|
||||||
|
@ -43,7 +43,7 @@ details. */
|
|||||||
changes to the DLL and is mainly informative in nature. */
|
changes to the DLL and is mainly informative in nature. */
|
||||||
|
|
||||||
#define CYGWIN_VERSION_DLL_MAJOR 1007
|
#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
|
/* Major numbers before CYGWIN_VERSION_DLL_EPOCH are
|
||||||
incompatible. */
|
incompatible. */
|
||||||
|
@ -1,18 +1,6 @@
|
|||||||
What's new:
|
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.
|
- /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
|
This can be utilized in scripts to access paths via cygdrive prefix, even
|
||||||
if the cygdrive prefix has been changed by the user.
|
if the cygdrive prefix has been changed by the user.
|
||||||
@ -29,19 +17,12 @@ What's new:
|
|||||||
|
|
||||||
- New API: stime (SVr4).
|
- New API: stime (SVr4).
|
||||||
|
|
||||||
- Provide Cygwin documentation (PDFs and HTML) for offline usage in
|
|
||||||
/usr/share/doc/cygwin-${version}.
|
|
||||||
|
|
||||||
|
|
||||||
What changed:
|
What changed:
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- New internal exception handling based on SEH on 64 bit Cygwin.
|
- 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,
|
- 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
|
add PATH variable with Cygwin installation directory as content to Windows
|
||||||
environment to allow loading of Cygwin system DLLs.
|
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.
|
- 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.
|
- atexit is now exported as statically linked function from libcygwin.a.
|
||||||
This allows reliable access to the DSO handle of the caller for newly
|
This allows reliable access to the DSO handle of the caller for newly
|
||||||
built executables. The former atexit entry point into the DLL remains
|
built executables. The former atexit entry point into the DLL remains
|
||||||
|
32
winsup/cygwin/release/1.7.34
Normal file
32
winsup/cygwin/release/1.7.34
Normal file
@ -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
|
||||||
|
---------
|
@ -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>
|
2014-11-07 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* utils.xml (mkgroup): Align to changed usage.
|
* utils.xml (mkgroup): Align to changed usage.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<sect1 id="ov-new1.7"><title>What's new and what changed in Cygwin</title>
|
<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">
|
<itemizedlist mark="bullet">
|
||||||
|
|
||||||
@ -30,6 +30,20 @@ Add -b/--remove-all option to setfacl to reduce the ACL to only the entries
|
|||||||
representing POSIX permission bits.
|
representing POSIX permission bits.
|
||||||
</para></listitem>
|
</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>
|
<listitem><para>
|
||||||
/proc/cygdrive is a new symlink pointing to the current cygdrive prefix.
|
/proc/cygdrive is a new symlink pointing to the current cygdrive prefix.
|
||||||
This can be utilized in scripts to access paths via cygdrive prefix,
|
This can be utilized in scripts to access paths via cygdrive prefix,
|
||||||
@ -65,12 +79,6 @@ Provide Cygwin documentation (PDFs and HTML) for offline usage in
|
|||||||
New internal exception handling based on SEH on 64 bit Cygwin.
|
New internal exception handling based on SEH on 64 bit Cygwin.
|
||||||
</para></listitem>
|
</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>
|
<listitem><para>
|
||||||
When exec'ing applications, check if $PATH exists and is non-empty. If
|
When exec'ing applications, check if $PATH exists and is non-empty. If
|
||||||
not, add PATH variable with Cygwin installation directory as content to
|
not, add PATH variable with Cygwin installation directory as content to
|
||||||
@ -89,11 +97,6 @@ Improve various header files for C++- and standards-compliance.
|
|||||||
Doug Lea malloc implementation update from 2.8.3 to the latest 2.8.6.
|
Doug Lea malloc implementation update from 2.8.3 to the latest 2.8.6.
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
|
|
||||||
<listitem><para>
|
|
||||||
The xdr functions are no longer exported for newly built executables.
|
|
||||||
Use libtirpc-devel instead.
|
|
||||||
</para></listitem>
|
|
||||||
|
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
atexit(3) is now exported as statically linked function from libcygwin.a.
|
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
|
This allows reliable access to the DSO handle of the caller for newly
|
||||||
|
Loading…
Reference in New Issue
Block a user