diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-09-30 22:54:28 +0300 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-10-31 18:44:59 +0800 |
commit | 5b9e16764905d06fa8e8339ba185ddfee304e5fb (patch) | |
tree | 97dc06b62cd1baa6bb0839c51e7370e28b41f184 | |
parent | CMake: Use -D_FILE_OFFSET_BITS=64 if (and only if) needed. (diff) | |
download | xz-5b9e16764905d06fa8e8339ba185ddfee304e5fb.tar.xz |
liblzma: Refer to MinGW-w64 instead of MinGW in the API headers.
MinGW (formely a MinGW.org Project, later the MinGW.OSDN Project
at <https://osdn.net/projects/mingw/>) has GCC 9.2.0 as the
most recent GCC package (released 2021-02-02). The project might
still be alive but majority of people have switched to MinGW-w64.
Thus it seems clearer to refer to MinGW-w64 in our API headers too.
Building with MinGW is likely to still work but I haven't tested it
in the recent years.
-rw-r--r-- | src/liblzma/api/lzma.h | 4 | ||||
-rw-r--r-- | src/liblzma/api/lzma/version.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index f38513d3..de12f225 100644 --- a/src/liblzma/api/lzma.h +++ b/src/liblzma/api/lzma.h @@ -182,11 +182,11 @@ * against static liblzma on them, don't worry about LZMA_API_STATIC. That * is, most developers will never need to use LZMA_API_STATIC. * - * The GCC variants are a special case on Windows (Cygwin and MinGW). + * The GCC variants are a special case on Windows (Cygwin and MinGW-w64). * We rely on GCC doing the right thing with its auto-import feature, * and thus don't use __declspec(dllimport). This way developers don't * need to worry about LZMA_API_STATIC. Also the calling convention is - * omitted on Cygwin but not on MinGW. + * omitted on Cygwin but not on MinGW-w64. */ #ifndef LZMA_API_IMPORT # if !defined(LZMA_API_STATIC) && defined(_WIN32) && !defined(__GNUC__) diff --git a/src/liblzma/api/lzma/version.h b/src/liblzma/api/lzma/version.h index 8739d751..74ac52f1 100644 --- a/src/liblzma/api/lzma/version.h +++ b/src/liblzma/api/lzma/version.h @@ -106,7 +106,7 @@ LZMA_VERSION_COMMIT) -/* #ifndef is needed for use with windres (MinGW or Cygwin). */ +/* #ifndef is needed for use with windres (MinGW-w64 or Cygwin). */ #ifndef LZMA_H_INTERNAL_RC /** |