[vlc-commits] configure: link with synchronization library when building for win8+
Steve Lhomme
git at videolan.org
Fri Jun 5 15:02:43 CEST 2020
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Fri Jun 5 10:46:56 2020 +0200| [6cf8a7f8996b3684558bbac9177d09bedd912f91] | committer: Steve Lhomme
configure: link with synchronization library when building for win8+
That's what should be used when calling WaitOnAddress.
It's not part of the kernel32.dll anymore.
https://docs.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-waitonaddress
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6cf8a7f8996b3684558bbac9177d09bedd912f91
---
configure.ac | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/configure.ac b/configure.ac
index 3f6e91a188..08e87df41c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -266,6 +266,18 @@ case "${host_os}" in
],[
AC_DEFINE([_WIN32_WINNT], [0x0601], [Define to '0x0601' for Windows 7 APIs.])
])
+ AC_MSG_CHECKING([if libsynchronization is needed])
+ AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
+ [[#if _WIN32_WINNT >= 0x0602
+ # error building for Win8+ and above
+ #endif
+ ]],[[;]])
+ ],[
+ AC_MSG_RESULT([no])
+ ],[
+ AC_MSG_RESULT([yes])
+ VLC_ADD_LIBS([libvlccore], [-lsynchronization])
+ ])
AC_DEFINE([_WIN32_IE], [0x0600], [Define to '0x0600' for IE 6.0 (and shell) APIs.])
AC_DEFINE([UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
AC_DEFINE([_ISOC99_SOURCE], [1], [Extensions to ISO C89 from ISO C99.])
More information about the vlc-commits
mailing list