[vlc-devel] [PATCH 01/19] contrib: fix autoreconf on some packages

Rémi Denis-Courmont remi at remlab.net
Wed Jun 14 15:24:55 CEST 2017


On June 14, 2017 3:01:50 PM GMT+03:00, Steve Lhomme <robux4 at videolabs.io> wrote:
>libmad doesn't build on mingw32 without this
>---
> contrib/src/main.mak | 4 ++++
> 1 file changed, 4 insertions(+)
>
>diff --git a/contrib/src/main.mak b/contrib/src/main.mak
>index 9f49f266ed..7a77d03afb 100644
>--- a/contrib/src/main.mak
>+++ b/contrib/src/main.mak
>@@ -354,8 +354,12 @@ UPDATE_AUTOCONFIG = for dir in
>$(AUTOMAKE_DATA_DIRS); do \
> ifdef HAVE_IOS
> AUTORECONF = AUTOPOINT=true autoreconf
> else
>+ifdef HAVE_WIN32
>+AUTORECONF = rm -rf aclocal.m4 Makefile.in && autoreconf
>+else
> AUTORECONF = autoreconf
> endif
>+endif
> RECONF = mkdir -p -- $(PREFIX)/share/aclocal && \
> 	cd $< && $(AUTORECONF) -fiv $(ACLOCAL_AMFLAGS)
> CMAKE = cmake . -DCMAKE_TOOLCHAIN_FILE=$(abspath toolchain.cmake) \
>-- 
>2.12.1
>
>_______________________________________________
>vlc-devel mailing list
>To unsubscribe or modify your subscription options:
>https://mailman.videolan.org/listinfo/vlc-devel

Not sure tht deleting files implicitly is such a great idea. Also, aclocal might output somewhere else anyway, no? 
-- 
Rémi Denis-Courmont


More information about the vlc-devel mailing list