]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
OpenSSL 0.9.8 doesn't have support for mingw64
authorRichard Levitte <levitte@openssl.org>
Wed, 23 Sep 2015 10:21:19 +0000 (12:21 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 23 Sep 2015 10:21:19 +0000 (12:21 +0200)
Remove that option from travis

Reviewed-by: Andy Polyakov <appro@openssl.org>
.travis.yml

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