Skip to content

Commit cfb2cfd

Browse files
author
Git for Windows Build Agent
committed
Update 24 packages
libpcre (8.45-4 -> 8.45-5) libpcre16 (8.45-4 -> 8.45-5) libpcre32 (8.45-4 -> 8.45-5) libpcrecpp (8.45-4 -> 8.45-5) libpcreposix (8.45-4 -> 8.45-5) libutil-linux (2.35.2-4 -> 2.35.2-5) mingw-w64-i686-crt-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-gdb (16.1-1 -> 16.2-1) mingw-w64-i686-headers-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-libmangle-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-libwinpthread-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-tools-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-winpthreads-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-x86_64-crt-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-x86_64-gdb (16.1-1 -> 16.2-1) mingw-w64-x86_64-headers-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-x86_64-libmangle-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-x86_64-libwinpthread-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-x86_64-tools-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-x86_64-winpthreads-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) patch (2.7.6-2 -> 2.7.6-3) pcre (8.45-4 -> 8.45-5) python (3.12.8-2 -> 3.12.8-3) util-linux (2.35.2-4 -> 2.35.2-5) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent cb9ab42 commit cfb2cfd

File tree

290 files changed

+162
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+162
-129
lines changed

mingw32/bin/gdb.exe

1 KB
Binary file not shown.

mingw32/bin/gdbserver.exe

0 Bytes
Binary file not shown.

mingw32/bin/gendef.exe

0 Bytes
Binary file not shown.

mingw32/bin/genidl.exe

0 Bytes
Binary file not shown.

mingw32/bin/genpeimg.exe

0 Bytes
Binary file not shown.

mingw32/bin/gstack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GDB=${GDB:-$(command -v gdb)}
2323
GDBARGS=${GDBARGS:-}
2424
AWK=${AWK:-}
2525
PKGVERSION=(GDB)
26-
VERSION=16.1
26+
VERSION=16.2
2727

2828
# Find an appropriate awk interpreter if one was not specified
2929
# via the environment.

mingw32/bin/libwinpthread-1.dll

0 Bytes
Binary file not shown.

mingw32/bin/widl.exe

0 Bytes
Binary file not shown.

mingw32/include/_mingw_mac.h

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifndef _INC_CRTDEFS_MACRO
88
#define _INC_CRTDEFS_MACRO
99

10+
#define __PASTE(x, y) x ## y
11+
#define __MINGW64_PASTE(x, y) __PASTE(x, y)
12+
1013
#define __STRINGIFY(x) #x
1114
#define __MINGW64_STRINGIFY(x) \
1215
__STRINGIFY(x)
@@ -123,14 +126,14 @@
123126
#endif /* ifndef _X86_ */
124127

125128
#if __MINGW_USE_UNDERSCORE_PREFIX == 0
126-
# define __MINGW_IMP_SYMBOL(sym) __imp_##sym
127-
# define __MINGW_IMP_LSYMBOL(sym) __imp_##sym
129+
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
130+
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
128131
# define __MINGW_USYMBOL(sym) sym
129-
# define __MINGW_LSYMBOL(sym) _##sym
132+
# define __MINGW_LSYMBOL(sym) __MINGW64_PASTE(_,sym)
130133
#else /* ! if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
131-
# define __MINGW_IMP_SYMBOL(sym) _imp__##sym
132-
# define __MINGW_IMP_LSYMBOL(sym) __imp__##sym
133-
# define __MINGW_USYMBOL(sym) _##sym
134+
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(_imp__,sym)
135+
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp__,sym)
136+
# define __MINGW_USYMBOL(sym) __MINGW64_PASTE(_,sym)
134137
# define __MINGW_LSYMBOL(sym) sym
135138
#endif /* if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
136139

mingw32/include/shlwapi.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,8 @@ extern "C" {
438438
LWSTDAPI_(WINBOOL) PathMatchSpecW(LPCWSTR pszFile,LPCWSTR pszSpec);
439439
LWSTDAPI_(int) PathParseIconLocationA(LPSTR pszIconFile);
440440
LWSTDAPI_(int) PathParseIconLocationW(LPWSTR pszIconFile);
441-
LWSTDAPI_(void) PathQuoteSpacesA(LPSTR lpsz);
442-
LWSTDAPI_(void) PathQuoteSpacesW(LPWSTR lpsz);
441+
LWSTDAPI_(WINBOOL) PathQuoteSpacesA(LPSTR lpsz);
442+
LWSTDAPI_(WINBOOL) PathQuoteSpacesW(LPWSTR lpsz);
443443
LWSTDAPI_(WINBOOL) PathRelativePathToA(LPSTR pszPath,LPCSTR pszFrom,DWORD dwAttrFrom,LPCSTR pszTo,DWORD dwAttrTo);
444444
LWSTDAPI_(WINBOOL) PathRelativePathToW(LPWSTR pszPath,LPCWSTR pszFrom,DWORD dwAttrFrom,LPCWSTR pszTo,DWORD dwAttrTo);
445445
LWSTDAPI_(void) PathRemoveArgsA(LPSTR pszPath);

0 commit comments

Comments
 (0)