mscoree: Update Wine Mono to 5.0.0.
Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e3e0cb8ebc
commit
fc77666c0b
|
@ -58,8 +58,14 @@ WINE_DEFAULT_DEBUG_CHANNEL(appwizcpl);
|
||||||
#define GECKO_SHA "???"
|
#define GECKO_SHA "???"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MONO_VERSION "4.9.4"
|
#define MONO_VERSION "5.0.0"
|
||||||
#define MONO_SHA "51a6ff38323fcda71d70ead90c252b5eaeacec542ba737dbd1d676787b210fdd"
|
#if defined(__i386__) || defined(__x86_64__)
|
||||||
|
#define MONO_ARCH "x86"
|
||||||
|
#define MONO_SHA "17da208645a82a5e45e84fc75c73a8440acda484411cb8fae8e9b72db9886cd5"
|
||||||
|
#else
|
||||||
|
#define MONO_ARCH ""
|
||||||
|
#define MONO_SHA "???"
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
const char *version;
|
const char *version;
|
||||||
|
@ -88,7 +94,7 @@ static const addon_info_t addons_info[] = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
MONO_VERSION,
|
MONO_VERSION,
|
||||||
L"wine-mono-" MONO_VERSION ".msi",
|
L"wine-mono-" MONO_VERSION "-" MONO_ARCH ".msi",
|
||||||
L"mono",
|
L"mono",
|
||||||
MONO_SHA,
|
MONO_SHA,
|
||||||
"http://source.winehq.org/winemono.php",
|
"http://source.winehq.org/winemono.php",
|
||||||
|
|
|
@ -45,7 +45,7 @@ extern HRESULT assembly_get_runtime_version(ASSEMBLY *assembly, LPSTR *version)
|
||||||
extern HRESULT assembly_get_vtable_fixups(ASSEMBLY *assembly, VTableFixup **fixups, DWORD *count) DECLSPEC_HIDDEN;
|
extern HRESULT assembly_get_vtable_fixups(ASSEMBLY *assembly, VTableFixup **fixups, DWORD *count) DECLSPEC_HIDDEN;
|
||||||
extern HRESULT assembly_get_native_entrypoint(ASSEMBLY *assembly, NativeEntryPointFunc *func) DECLSPEC_HIDDEN;
|
extern HRESULT assembly_get_native_entrypoint(ASSEMBLY *assembly, NativeEntryPointFunc *func) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
#define WINE_MONO_VERSION "4.9.4"
|
#define WINE_MONO_VERSION "5.0.0"
|
||||||
|
|
||||||
/* Mono embedding */
|
/* Mono embedding */
|
||||||
typedef struct _MonoDomain MonoDomain;
|
typedef struct _MonoDomain MonoDomain;
|
||||||
|
|
Loading…
Reference in New Issue