[vlc-commits] widl: do not specify multiple short options with one single -

Rafaël Carré git at videolan.org
Tue Mar 4 11:25:01 CET 2014


npapi-vlc | branch: master | Rafaël Carré <funman at videolan.org> | Tue Mar  4 11:24:26 2014 +0100| [e0fa7d700d81de315bb632259ea037bfe9b2cd61] | committer: Rafaël Carré

widl: do not specify multiple short options with one single -

mingw-w64's widl uses getopt_long_only which doesn't like
this syntax.

> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=e0fa7d700d81de315bb632259ea037bfe9b2cd61
---

 activex/Makefile.am |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/activex/Makefile.am b/activex/Makefile.am
index e5722ea..cf26645 100644
--- a/activex/Makefile.am
+++ b/activex/Makefile.am
@@ -106,10 +106,10 @@ if HAS_WIDL_COMPILER
 WINE_SDK_PATH ?= /usr/include/wine/windows
 
 stdole2.tlb stdole2_idl.c stdole2_idl.h: $(WINE_SDK_PATH)/stdole2.idl
-	$(WIDL) -I$(WINE_SDK_PATH) -tuh -T stdole2.tlb -U stdole2_idl.c -H stdole2_idl.h $<
+	$(WIDL) -I$(WINE_SDK_PATH) -t -u -h -T stdole2.tlb -U stdole2_idl.c -H stdole2_idl.h $<
 
 axvlc.tlb axvlc_idl.c axvlc_idl.h: axvlc.idl stdole2.tlb
-	$(WIDL) -I$(WINE_SDK_PATH) -I. -tuh -T axvlc.tlb -U axvlc_idl.c -H axvlc_idl.h axvlc.idl
+	$(WIDL) -I$(WINE_SDK_PATH) -I. -t -u -h -T axvlc.tlb -U axvlc_idl.c -H axvlc_idl.h axvlc.idl
 
 clean-tlb:
 	rm -f axvlc.tlb axvlc_idl.c axvlc_idl.h stdole2.tlb stdole2_idl.c stdole2_idl.h



More information about the vlc-commits mailing list