mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:51:38 +08:00
66ce4e9277
This change also includes a change to use the Windows SDK as reported by the WinSDK ENV variable. v8 9.0257.17 requires ICU to be version 68.x or up.
26 lines
769 B
Diff
26 lines
769 B
Diff
diff --urN a/source/data/Makefile.in b/source/data/Makefile.in
|
|
--- a/source/data/Makefile.in
|
|
+++ b/source/data/Makefile.in
|
|
@@ -236,11 +236,12 @@
|
|
## Include the main build rules for data files
|
|
include $(top_builddir)/$(subdir)/rules.mk
|
|
|
|
+PKGDATA_LIST = $(TMP_DIR)/icudata.lst
|
|
|
|
ifeq ($(ENABLE_SO_VERSION_DATA),1)
|
|
ifeq ($(PKGDATA_MODE),dll)
|
|
SO_VERSION_DATA = $(OUTTMPDIR)/icudata.res
|
|
-$(SO_VERSION_DATA) : $(MISCSRCDIR)/icudata.rc | $(TMP_DIR)/dirs.timestamp
|
|
+$(SO_VERSION_DATA) : $(MISCSRCDIR)/icudata.rc $(PKGDATA_LIST)
|
|
ifeq ($(MSYS_RC_MODE),1)
|
|
rc.exe -i$(srcdir)/../common -i$(top_builddir)/common -fo$@ $(CPPFLAGS) $<
|
|
else
|
|
@@ -249,7 +250,6 @@
|
|
endif
|
|
endif
|
|
|
|
-PKGDATA_LIST = $(TMP_DIR)/icudata.lst
|
|
|
|
|
|
#####################################################
|