From a6c778f17eb53197349183011830a728d016c663 Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Mon, 25 Aug 2014 09:22:49 +0200 Subject: [PATCH] bump openssl version and add -static-libgcc for openssl compile --- windows.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows.mk b/windows.mk index 4328890..30ace69 100644 --- a/windows.mk +++ b/windows.mk @@ -25,7 +25,7 @@ # for the parts of OpenSSL used as well as that of the covered work. PACKAGE=yubico-piv-tool -OPENSSLVERSION=1.0.1h +OPENSSLVERSION=1.0.1i all: usage 32bit 64bit @@ -46,7 +46,7 @@ doit: wget --no-check-certificate "https://www.openssl.org/source/openssl-$(OPENSSLVERSION).tar.gz" && \ tar xfa openssl-$(OPENSSLVERSION).tar.gz && \ cd openssl-$(OPENSSLVERSION) && \ - CROSS_COMPILE="$(HOST)-" ./Configure mingw64 no-asm shared --prefix=$(PWD)/tmp$(ARCH)/root && \ + CROSS_COMPILE="$(HOST)-" ./Configure mingw64 no-asm shared --prefix=$(PWD)/tmp$(ARCH)/root -static-libgcc && \ make all install_sw && \ cp LICENSE $(PWD)/tmp$(ARCH)/root/licenses/openssl.txt && \ cd .. && \