Module: wine
Branch: master
Commit: 1ad2cb51c5b3cf98104ea15db4fc6f38e9da6e8a
URL: https://source.winehq.org/git/wine.git/?a=commit;h=1ad2cb51c5b3cf98104ea15d…
Author: Nikolay Sivov <nsivov(a)codeweavers.com>
Date: Wed Apr 27 14:21:16 2022 +0300
nls: Hardcode minus sign for all locales.
CLDR data for RTL locales includes LRM marker for minus sign text,
in addition to that some locales are using different dash character.
Windows seems to consistently use same character for all locales.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52866
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
nls/locale.nls | Bin 730526 -> 730506 bytes
tools/make_unicode | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/nls/locale.nls b/nls/locale.nls
index 329224c92fc..af2f061944a 100644
Binary files a/nls/locale.nls and b/nls/locale.nls differ
diff --git a/tools/make_unicode b/tools/make_unicode
index 29dea8cd52e..40b64ddca71 100755
--- a/tools/make_unicode
+++ b/tools/make_unicode
@@ -4716,7 +4716,7 @@ sub build_locale_data()
$sthousand =~ s/\x{202f}/\x{00a0}/;
my $smonthousandsep = loc_query( $loc, "/ldml/numbers/symbols[\@numberSystem='latn']/currencyGroup" ) || $sthousand;
my $spositivesign = "";
- my $snegativesign = loc_query( $loc, "/ldml/numbers/symbols[\@numberSystem='latn']/minusSign" );
+ my $snegativesign = "-";
my $spercent = loc_query( $loc, "/ldml/numbers/symbols[\@numberSystem='latn']/percentSign" );
my $snan = loc_query( $loc, "/ldml/numbers/symbols[\@numberSystem='latn']/nan" );
my $sposinfinity = loc_query( $loc, "/ldml/numbers/symbols[\@numberSystem='latn']/infinity" );
Module: vkd3d
Branch: master
Commit: f34db84c62123f4c484a81cc0ab70aba8c55ef93
URL: https://source.winehq.org/git/vkd3d.git/?a=commit;h=f34db84c62123f4c484a81c…
Author: Zebediah Figura <zfigura(a)codeweavers.com>
Date: Wed Apr 27 11:26:06 2022 -0500
configure: Allow specifying the Vulkan library path with VULKAN_LIBS.
Do not define it for the vkd3d build, but restore support for overriding it as a
configure argument.
This partially reverts 99a3adcc19f2a64fad630948851616f52c00d553.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52915
Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
configure.ac | 1 +
m4/check-vulkan.m4 | 7 ++++---
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index b386104a..7796ae8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -113,6 +113,7 @@ case $host_os in
esac
AC_ARG_VAR([SONAME_LIBVULKAN], [shared object name for the Vulkan library])
+AC_ARG_VAR([VULKAN_LIBS], [linker flags for the Vulkan library])
AS_IF([test "x$SONAME_LIBVULKAN" = "x"],
[VKD3D_CHECK_VULKAN],
[AC_DEFINE_UNQUOTED([SONAME_LIBVULKAN],["$SONAME_LIBVULKAN"],[Define to the shared object name of the Vulkan library.])])
diff --git a/m4/check-vulkan.m4 b/m4/check-vulkan.m4
index b2c3f8a1..f651a077 100644
--- a/m4/check-vulkan.m4
+++ b/m4/check-vulkan.m4
@@ -6,7 +6,8 @@ VKD3D_CHECK_SONAME([vulkan], [vkGetInstanceProcAddr],,
[VKD3D_CHECK_SONAME([MoltenVK], [vkGetInstanceProcAddr],
[AC_DEFINE_UNQUOTED([SONAME_LIBVULKAN],
["$ac_cv_lib_soname_MoltenVK"])],
- [AC_MSG_ERROR([libvulkan and libMoltenVK not found.])])
- ])
- ])
+ [AC_MSG_ERROR([libvulkan and libMoltenVK not found.])],
+ [$VULKAN_LIBS])],
+ [$VULKAN_LIBS])],
+ [$VULKAN_LIBS])
])