Re: [FFmpeg-devel] [PATCH] "configure" breaks on MSYS2 MINGW64

2015-09-12 Thread Michael Niedermayer
On Sat, Sep 12, 2015 at 10:57:37PM +1000, Matt Oliver wrote: > On 12 September 2015 at 19:40, Peter Belkner wrote: > > > On 12.09.2015 11:15, Geek.Song wrote: > > > >> diff -u > > > > > LGTM. > I had an identical patch ready to fix the same problem so this one is fine. i think you dont have git

Re: [FFmpeg-devel] [PATCH] "configure" breaks on MSYS2 MINGW64

2015-09-12 Thread Hendrik Leppkes
On Sat, Sep 12, 2015 at 2:57 PM, Matt Oliver wrote: > On 12 September 2015 at 19:40, Peter Belkner wrote: > >> On 12.09.2015 11:15, Geek.Song wrote: >> >>> diff -u >> >> > LGTM. > I had an identical patch ready to fix the same problem so this one is fine. LGTM too, applied. _

Re: [FFmpeg-devel] [PATCH] "configure" breaks on MSYS2 MINGW64

2015-09-12 Thread Matt Oliver
On 12 September 2015 at 19:40, Peter Belkner wrote: > On 12.09.2015 11:15, Geek.Song wrote: > >> diff -u > > LGTM. I had an identical patch ready to fix the same problem so this one is fine. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://f

Re: [FFmpeg-devel] [PATCH] "configure" breaks on MSYS2 MINGW64

2015-09-12 Thread Peter Belkner
On 12.09.2015 11:15, Geek.Song wrote: diff -u --- ./a/ffmpeg/configure2015-09-11 19:20:03.0 +0200 +++ ./b/ffmpeg/configure2015-09-12 11:36:32.78060 +0200 @@ -3297,7 +3297,7 @@ exesuf() { case $1 in -mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|o

Re: [FFmpeg-devel] [PATCH] "configure" breaks on MSYS2 MINGW64

2015-09-12 Thread Geek.Song
On Sat, Sep 12, 2015 at 5:06 PM, Peter Belkner wrote: > Hi, > > building current FFmpeg breaks on MSYS2 MINGW64 > (http://sourceforge.net/projects/msys2/) with error "Unknown OS > 'mingw64_nt-6.0'." from "configure". > > Probably "mingw64_nt-6.0" results from "uname -s" on MSYS2 MINGW64: > >$

[FFmpeg-devel] [PATCH] "configure" breaks on MSYS2 MINGW64

2015-09-12 Thread Peter Belkner
Hi, building current FFmpeg breaks on MSYS2 MINGW64 (http://sourceforge.net/projects/msys2/) with error "Unknown OS 'mingw64_nt-6.0'." from "configure". Probably "mingw64_nt-6.0" results from "uname -s" on MSYS2 MINGW64: $ uname -s MINGW64_NT-6.0 The attached patch seems to fix it. R