[MinGW-Notify] [SCM] mingw-org-wsl (mingw) branch, 5.3-trunk, updated. 09dbd0d135a264c3c3125dfde0f2db66c50b7b1f

Zurück zum Archiv-Index
MinGW Notification List mingw****@lists*****
Fri Mar 6 02:43:28 JST 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to "mingw-org-wsl" repository
containing the "mingw" project.

The branch, 5.3-trunk has been updated
       via  09dbd0d135a264c3c3125dfde0f2db66c50b7b1f (commit)
       via  16c8f8b4fb192900841e143f02779ab649b57481 (commit)
       via  5315abb63343f392489b76563a652ef49dba0120 (commit)
       via  b9742c6cc57e4916d96d4e7bbf3c49d2ea4d56f1 (commit)
       via  14023de5a129e68a0b726d55258ee30daa85e384 (commit)
       via  cc40bc6c69615bc8b936d966f457d31bbc9cabc8 (commit)
       via  3afef4254714c54d4ff1ebb401f209f7c2dfe55f (commit)
       via  97f9c0216cf74ef334037c277c58dc42e16ec406 (commit)
      from  3edbad03398142e3fe3d3bb55fa506b5b03acecd (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 09dbd0d135a264c3c3125dfde0f2db66c50b7b1f
Author: Keith Marshall <keith****@users*****>
Date:   Thu Mar 5 14:01:56 2020 +0000

    Prepare and publish MinGW.org WSL-5.3 release.

commit 16c8f8b4fb192900841e143f02779ab649b57481
Author: Keith Marshall <keith****@users*****>
Date:   Thu Mar 5 13:49:29 2020 +0000

    Let _ISOC11_SOURCE imply _ISOC99_SOURCE.

commit 5315abb63343f392489b76563a652ef49dba0120
Author: Keith Marshall <keith****@users*****>
Date:   Thu Mar 5 10:27:46 2020 +0000

    Avoid deprecated specification of esp in asm clobber list.

commit b9742c6cc57e4916d96d4e7bbf3c49d2ea4d56f1
Author: Keith Marshall <keith****@users*****>
Date:   Wed Mar 4 22:55:56 2020 +0000

    Disallow surrogates as printf() radix and grouping characters.

commit 14023de5a129e68a0b726d55258ee30daa85e384
Author: Keith Marshall <keith****@users*****>
Date:   Wed Mar 4 19:20:34 2020 +0000

    Reimplement wcstof(), and wcstold() functions.

commit cc40bc6c69615bc8b936d966f457d31bbc9cabc8
Author: Keith Marshall <keith****@users*****>
Date:   Tue Mar 3 21:58:11 2020 +0000

    Reimplement btowc(), and wctob() functions.

commit 3afef4254714c54d4ff1ebb401f209f7c2dfe55f
Author: Keith Marshall <keith****@users*****>
Date:   Mon Mar 2 14:43:44 2020 +0000

    Reimplement mbrlen(), mbrtowc(), and mbsrtowcs() functions.

commit 97f9c0216cf74ef334037c277c58dc42e16ec406
Author: Keith Marshall <keith****@users*****>
Date:   Tue Feb 25 23:08:18 2020 +0000

    Reimplement wcrtomb() and wcsrtombs(); cf. MinGW-Issue #39687.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                       |   6 +
 mingwrt/ChangeLog               | 157 ++++++++++++++++++++++
 mingwrt/Makefile.in             |  14 +-
 mingwrt/crt1.c                  |  17 ++-
 mingwrt/include/_mingw.h.in     |  11 +-
 mingwrt/include/limits.h        |  10 +-
 mingwrt/include/stdlib.h        |  14 ++
 mingwrt/include/wchar.h         | 105 +++++++++++++--
 mingwrt/mingwex/btowc.c         | 131 +++++++++++++++---
 mingwrt/mingwex/codeset.c       | 111 ++++++++++++++++
 mingwrt/mingwex/mb_wc_common.h  |  13 --
 mingwrt/mingwex/mbrconv.c       | 185 ++++++++++++++++++++++++++
 mingwrt/mingwex/mbrlen.c        | 107 +++++++++++++++
 mingwrt/mingwex/mbrscan.c       | 287 ++++++++++++++++++++++++++++++++++++++++
 mingwrt/mingwex/mbrtowc.c       | 265 ++++++++++++++++---------------------
 mingwrt/mingwex/mbsrtowcs.c     | 227 +++++++++++++++++++++++++++++++
 mingwrt/mingwex/stdio/pformat.c |  39 +++++-
 mingwrt/mingwex/wcharmap.c      | 193 +++++++++++++++++++++++++++
 mingwrt/mingwex/wcharmap.h      | 115 ++++++++++++++++
 mingwrt/mingwex/wcrtomb.c       | 240 ++++++++++++++++++++++-----------
 mingwrt/mingwex/wcsrtombs.c     | 174 ++++++++++++++++++++++++
 mingwrt/mingwex/wcstof.c        |  64 ---------
 mingwrt/mingwex/wcstofp.c       | 243 ++++++++++++++++++++++++++++++++++
 mingwrt/mingwex/wcstold.c       |  65 ---------
 mingwrt/mingwex/wctob.c         | 120 ++++++++++++++---
 w32api/ChangeLog                |   6 +
 26 files changed, 2490 insertions(+), 429 deletions(-)
 create mode 100644 mingwrt/mingwex/codeset.c
 delete mode 100644 mingwrt/mingwex/mb_wc_common.h
 create mode 100644 mingwrt/mingwex/mbrconv.c
 create mode 100644 mingwrt/mingwex/mbrlen.c
 create mode 100644 mingwrt/mingwex/mbrscan.c
 create mode 100644 mingwrt/mingwex/mbsrtowcs.c
 create mode 100644 mingwrt/mingwex/wcharmap.c
 create mode 100644 mingwrt/mingwex/wcharmap.h
 create mode 100644 mingwrt/mingwex/wcsrtombs.c
 delete mode 100644 mingwrt/mingwex/wcstof.c
 create mode 100644 mingwrt/mingwex/wcstofp.c
 delete mode 100644 mingwrt/mingwex/wcstold.c


hooks/post-receive
-- 
mingw-org-wsl (mingw)



More information about the MinGW-Notify mailing list
Zurück zum Archiv-Index