mirror of https://git.tukaani.org/xz.git
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 dad1530915
)
This commit is contained in:
parent
e77c0ca61d
commit
5718ce932e
|
@ -5,7 +5,15 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define MY_TYPE VFT_DLL
|
#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_SUFFIX ".dll"
|
||||||
#define MY_DESC "liblzma data compression library"
|
#define MY_DESC "liblzma data compression library"
|
||||||
#include "common_w32res.rc"
|
#include "common_w32res.rc"
|
||||||
|
|
Loading…
Reference in New Issue