MinGW no longer fails on codepage settings.

This commit is contained in:
waltje
2018-06-16 20:04:37 -04:00
parent 25f64c37a2
commit 4e4d3b886e
2 changed files with 1 additions and 17 deletions

View File

@@ -228,11 +228,7 @@ VS_VERSION_INFO VERSIONINFO
BEGIN
BLOCK "StringFileInfo"
BEGIN
//#ifdef _MSC_VER
BLOCK "0409fde9"
//#else
// BLOCK "040904e4"
//#endif
BEGIN
VALUE "CompanyName", "IRC #VARCem on FreeNode"
VALUE "FileDescription", "Virtual ARchaeological Computer EMulator"
@@ -249,10 +245,6 @@ VS_VERSION_INFO VERSIONINFO
END
BLOCK "VarFileInfo"
BEGIN
//#ifdef _MSC_VER
VALUE "Translation", 0x409, 65001
//#else
// VALUE "Translation", 0x409, 1252
//#endif
END
END

View File

@@ -59,11 +59,7 @@ PREAMBLE #include "../resource.h"
#define __HEX4(x) 0x ## x
#define __INCL(a,b,c) _TEXT_(../../ui/lang/ ## a ## - ## b ## . ## c)
#define __DLLNM(a,b,c) _TEXT_(a ## - ## b ## . ## c)
#ifdef _MSC_VER
# define __BLKNM(id) _TEXT_(id ## fde9)
#else
# define __BLKNM(id) _TEXT_(id ## 04e4)
#endf
#define __BLKNM(id) _TEXT_(id ## fde9)
#define INCLUDE(l) __INCL(VARCem, l, str)
#define DLLNAME(l) __DLLNM(VARCem, l, dll)
#define BLOCKNAME(l) __BLKNM(l)
@@ -104,10 +100,6 @@ VS_VERSION_INFO VERSIONINFO
END
BLOCK "VarFileInfo"
BEGIN
#ifdef _MSC_VER
VALUE "Translation", __HEX4(LANGID), 65001
#else
VALUE "Translation", __HEX4(LANGID), 1252
#endif
END
END