OpenSSL 0.9.8 doesn't have support for mingw64

Remove that option from travis

Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
Richard Levitte 2015-09-23 12:21:19 +02:00
parent 68d53e4f30
commit 1d587fdd1e

View File

@ -13,7 +13,6 @@ compiler:
- clang - clang
- gcc - gcc
- i686-w64-mingw32-gcc - i686-w64-mingw32-gcc
- x86_64-w64-mingw32-gcc
env: env:
- CONFIG_OPTS="" - CONFIG_OPTS=""
@ -24,16 +23,11 @@ matrix:
exclude: exclude:
- os: osx - os: osx
compiler: i686-w64-mingw32-gcc compiler: i686-w64-mingw32-gcc
- os: osx
compiler: x86_64-w64-mingw32-gcc
before_script: before_script:
- if [ "$CC" == i686-w64-mingw32-gcc ]; then - if [ "$CC" == i686-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC; export CROSS_COMPILE=${CC%%gcc}; unset CC;
./Configure mingw $CONFIG_OPTS; ./Configure mingw $CONFIG_OPTS;
elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
./Configure mingw64 $CONFIG_OPTS;
else else
./config $CONFIG_OPTS; ./config $CONFIG_OPTS;
fi fi