ref: e17a2bfb35a1d76b9276199537396a64b86b1d00
parent: fa43e4dae304320e224e67066d1cecf5bc345595
author: Ralph Giles <giles@mozilla.com>
date: Thu Dec 31 12:26:39 EST 2015
mingw: Bump docker build to Fedora 21. The version of mingw in Fedora 21 works as well. This is the first version to depend on libwinpthread. Also add an autogen.sh invocation which caused the previous build to fail after the 'make check' barrier was removed.
--- a/mingw/Dockerfile
+++ b/mingw/Dockerfile
@@ -1,4 +1,4 @@
-FROM fedora:20
+FROM fedora:21
MAINTAINER opus@xiph.org
# Linux build.
@@ -16,4 +16,4 @@
WORKDIR opusfile
RUN git pull
RUN make -C mingw
-RUN ./configure --host=i686-w64-mingw32 --prefix=${PWD}/mingw PKG_CONFIG_PATH=${PWD}/mingw/lib/pkgconfig && make && make check && make install
+RUN ./autogen.sh && ./configure --host=i686-w64-mingw32 --prefix=${PWD}/mingw PKG_CONFIG_PATH=${PWD}/mingw/lib/pkgconfig && make && make check && make install