Zebediah Figura : configure: Allow specifying the shared object name of the Vulkan library at configure time.

Alexandre Julliard julliard at winehq.org
Mon Apr 25 16:08:49 CDT 2022


Module: vkd3d
Branch: master
Commit: cab16fe9034ce6492ed7cc0a97a3ee69a4085f2a
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=cab16fe9034ce6492ed7cc0a97a3ee69a4085f2a

Author: Zebediah Figura <zfigura at codeweavers.com>
Date:   Fri Apr 22 15:18:01 2022 -0500

configure: Allow specifying the shared object name of the Vulkan library at configure time.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 configure.ac | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 5250103c..b386104a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -112,7 +112,10 @@ case $host_os in
      ;;
 esac
 
-VKD3D_CHECK_VULKAN
+AC_ARG_VAR([SONAME_LIBVULKAN], [shared object name 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.])])
 
 AS_IF([test "x$with_ncurses" != "xno"],
       [PKG_CHECK_MODULES([NCURSES], [ncurses],




More information about the wine-cvs mailing list