Files
MINGW-packages/mingw-w64-nodejs/0002-Fix-system-icu-build.patch
2023-06-05 20:46:55 +05:30

37 lines
1.0 KiB
Diff

From 7bc5feded40409da3a615cacd8593e6d3fedaa0f Mon Sep 17 00:00:00 2001
From: Alethea Rose <alethea@alethearose.com>
Date: Tue, 14 Feb 2017 21:43:31 -0500
Subject: [PATCH 02/23] Fix system-icu build
---
deps/v8/gypfiles/v8.gyp | 5 -----
1 file changed, 5 deletions(-)
diff --git a/deps/ada/ada.gyp b/deps/ada/ada.gyp
--- a/deps/ada/ada.gyp
+++ b/deps/ada/ada.gyp
@@ -21,7 +21,7 @@
'<(icu_gyp_path):icuuc',
],
}],
- ['OS=="win" and v8_enable_i18n_support==1', {
+ ['OS=="winmsvs" and v8_enable_i18n_support==1', {
'dependencies': [
'<(icu_gyp_path):icudata',
],
diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp
index e1d4aea0..05204ef2 100644
--- a/tools/v8_gypfiles/v8.gyp
+++ b/tools/v8_gypfiles/v8.gyp
@@ -960,7 +960,7 @@
}],
],
}],
- ['OS=="win"', {
+ ['OS=="winmsvs"', {
'dependencies': [
'<(icu_gyp_path):icudata#target',
],
--
2.17.0.windows.1