vlc | branch: master | Steve Lhomme <[email protected]> | Mon Apr 6 13:14:08 2020 +0200| [3cee38e3cb2d1adde6d957af45492e7f552ebb42] | committer: Steve Lhomme
configure: check IApplicationData2 is available in windows.storage.h This is needed to get the cache folder in Winstore apps > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3cee38e3cb2d1adde6d957af45492e7f552ebb42 --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 16fd5f20d5..14b3e6e8dc 100644 --- a/configure.ac +++ b/configure.ac @@ -2744,6 +2744,12 @@ dnl DXGI debug dnl AC_CHECK_HEADERS([dxgidebug.h dxgi1_6.h]) +dnl +dnl IApplicationData2 +dnl +have_iapplication_data2="no" +AC_CHECK_TYPES([IApplicationData2],[],[],[#include <windows.storage.h>]) + dnl dnl avformat demuxer/muxer plugin dnl _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
