npapi-vlc | branch: master | Steve Lhomme <[email protected]> | Thu Oct 20 07:12:43 2022 +0200| [fe037857b7d83b6bf2029539e98cfb7236c11a83] | committer: Steve Lhomme
fix stdole2.tld inclusion recent widl seems to use the pathes in `-L` to load .tlb files, rather than the `-I` pathes. > https://code.videolan.org/videolan/npapi-vlc/commit/fe037857b7d83b6bf2029539e98cfb7236c11a83 --- activex/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activex/Makefile.am b/activex/Makefile.am index 206b83e..4560612 100644 --- a/activex/Makefile.am +++ b/activex/Makefile.am @@ -107,7 +107,7 @@ axvlc.tlb axvlc_idl.c axvlc_idl.h: axvlc.idl $(WIDL) $(WIDLFLAGS) -I$(WINE_SDK_PATH) -I. -t -u -h -T axvlc.tlb -U axvlc_idl.c -H axvlc_idl.h $< else axvlc.tlb axvlc_idl.c axvlc_idl.h: axvlc.idl stdole2.tlb - $(WIDL) $(WIDLFLAGS) -I$(WINE_SDK_PATH) -I. -t -u -h -T axvlc.tlb -U axvlc_idl.c -H axvlc_idl.h $< + $(WIDL) $(WIDLFLAGS) -I$(WINE_SDK_PATH) -I. -L. -t -u -h -T axvlc.tlb -U axvlc_idl.c -H axvlc_idl.h $< endif clean-tlb: _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
