1
0
kopie van https://git.tukaani.org/xz.git synced 2025-05-11 16:56:46 +00:00

Windows: Set DLL name accurately in StringFileInfo on Cygwin and MSYS2

Now the information in the "Details" tab in the file properties
dialog matches the naming convention of Cygwin and MSYS2. This
is only a cosmetic change.

(cherry picked from commit dad153091552b52a41b95ec4981c6951f1cae487)
This commit is contained in:
Lasse Collin 2024-09-29 14:46:52 +03:00
bovenliggende e77c0ca61d
commit 5718ce932e
Geen bekende sleutel gevonden voor deze handtekening in de database
GPG sleutel-ID: 38EE757D69184620

Bestand weergeven

@ -5,7 +5,15 @@
*/
#define MY_TYPE VFT_DLL
#define MY_NAME "liblzma"
#if defined(__MSYS__)
# define MY_NAME "msys-lzma-5"
#elif defined(__CYGWIN__)
# define MY_NAME "cyglzma-5"
#else
# define MY_NAME "liblzma"
#endif
#define MY_SUFFIX ".dll"
#define MY_DESC "liblzma data compression library"
#include "common_w32res.rc"