vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Thu Mar 14 17:15:39 2013 +0100| [18fea8c1cba5e471cc48885adbb24ed5a36c8d83] | committer: Jean-Baptiste Kempf
Contribs: build shout without threads on Windows > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=18fea8c1cba5e471cc48885adbb24ed5a36c8d83 --- contrib/src/shout/rules.mak | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/contrib/src/shout/rules.mak b/contrib/src/shout/rules.mak index 86a3be3..dcffaa7 100644 --- a/contrib/src/shout/rules.mak +++ b/contrib/src/shout/rules.mak @@ -26,7 +26,13 @@ libshout: libshout-$(SHOUT_VERSION).tar.gz .sum-shout DEPS_shout = ogg $(DEPS_ogg) theora $(DEPS_theora) speex $(DEPS_speex) DEPS_shout += vorbis $(DEPS_vorbis) +SHOUT_CONF := + +ifdef HAVE_WIN32 +SHOUT_CONF += "--disable-thread" +endif + .shout: libshout - cd $< && $(HOSTVARS) ./configure $(HOSTCONF) + cd $< && $(HOSTVARS) ./configure $(SHOUT_CONF) $(HOSTCONF) cd $< && $(MAKE) install touch $@ _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
