Send MinGW-Notify mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.osdn.me/mailman/listinfo/mingw-notify
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of MinGW-Notify digest..."
Please do not reply to this notification; the sender address is unable to
accept incoming e-mail. If you wish to unsubscribe you can do so at
https://lists.osdn.me/mailman/listinfo/mingw-notify.
Today's Topics:
1. [SCM] website (mingw) branch, master, updated.
24c7b59d9252f75b9b90a7a9bd4f27bfd34bcc60 (MinGW Notification List)
2. [mingw] #40848: update errno.h ENOTSUP + EOVERFLOW
(MinGW Notification List)
----------------------------------------------------------------------
Message: 1
Date: Fri, 09 Oct 2020 23:35:13 +0900
From: MinGW Notification List <[email protected]>
To: [email protected]
Subject: [MinGW-Notify] [SCM] website (mingw) branch, master, updated.
24c7b59d9252f75b9b90a7a9bd4f27bfd34bcc60
Message-ID: <[email protected]>
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to "website" repository
containing the "mingw" project.
The branch, master has been updated
via 24c7b59d9252f75b9b90a7a9bd4f27bfd34bcc60 (commit)
from 8cf6dedbf1f746bfbdb74ffec9d8c19717465416 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 24c7b59d9252f75b9b90a7a9bd4f27bfd34bcc60
Author: Keith Marshall <[email protected]>
Date: Fri Oct 9 15:12:25 2020 +0100
Add generic page overlay to report missing content.
* missing.html: New file.
* site.js (load_content) [status 404]: Use it.
(load_page_content): Initially, clear previous content.
* header.html (Downloads, Documentation, Contact Us): Add "onclick"
tab references; defer provision of content, raising 404 status.
-----------------------------------------------------------------------
Summary of changes:
header.html | 27 ++++++++++++++++++++++++---
header.html => missing.html | 39 +++++++++++++++++++++------------------
site.js | 11 +++++++++--
3 files changed, 54 insertions(+), 23 deletions(-)
copy header.html => missing.html (72%)
hooks/post-receive
--
website (mingw)
------------------------------
Message: 2
Date: Fri, 09 Oct 2020 21:09:02 +0100
From: MinGW Notification List <[email protected]>
To: OSDN Ticket System <[email protected]>
Subject: [MinGW-Notify] [mingw] #40848: update errno.h ENOTSUP +
EOVERFLOW
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8
#40848: update errno.h ENOTSUP + EOVERFLOW
Open Date: 2020-10-08 22:51
Last Update: 2020-10-09 21:08
URL for this Ticket:
https://osdn.net//projects/mingw/ticket/40848
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=40848
---------------------------------------------------------------------
Last Changes/Comment on this Ticket:
2020-10-09 21:08 Updated by: keith
* Status Update from Open to Closed
* Resolution Update from None to Rejected
Comment:
That would be a bug in binutils, then; you should file a bug report on their
tracker.
On what basis have you chosen the values 129, and 132? Both are greater than
Windows' _sys_nerr limit, and will thus produce unacceptable results, if passed
to strerror(), or perror(). Consequently, I will not accept that, as a general
principle, these definitions may be arbitrarily adopted.
FWIW, the recommended work-around for this issue is, in the client code, after
including <errno.h>, to insert definitions such as
1. #ifndef ENOTSUP
2. #define ENOTSUP ENOSYS
3. #endif
4.
5. #ifndef EOVERFLOW
6. #define EOVERFLOW ERANGE
7. #endif
---------------------------------------------------------------------
Ticket Status:
Reporter: osdn-mensch
Owner: (None)
Type: Issues
Status: Closed
Priority: 5 - Medium
MileStone: (None)
Component: (None)
Severity: 5 - Medium
Resolution: Rejected
---------------------------------------------------------------------
Ticket details:
I needed to include the following into errno.h to be able to build a recent
version of binutils:
1. /* necessary to build recent binutils: */
2.
3. #define ENOTSUP 129
4. #define EOVERFLOW 132
and suggest this may be done in general.
--
Ticket information of MinGW - Minimalist GNU for Windows project
MinGW - Minimalist GNU for Windows Project is hosted on OSDN
Project URL: https://osdn.net/projects/mingw/
OSDN: https://osdn.net
URL for this Ticket:
https://osdn.net/projects/mingw/ticket/40848
RSS feed for this Ticket:
https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=40848
------------------------------
Subject: Digest Footer
_______________________________________________
MinGW-Notify mailing list
[email protected]
https://lists.osdn.me/mailman/listinfo/mingw-notify
------------------------------
End of MinGW-Notify Digest, Vol 37, Issue 4
*******************************************