From 096626286abf6bc73755d1cc352a672be90f6934 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 28 Jul 2017 10:12:33 +0200 Subject: [PATCH] appveyor: Build against OpenSSL This is mainly for the RNG needed for the exchange tests. --- scripts/test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index 238102f32..e3bc37e30 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -67,6 +67,11 @@ win*) # no make check for Windows binaries unless we run on a windows host if test "$APPVEYOR" != "True"; then TARGET= + else + CONFIG="$CONFIG --enable-openssl" + CFLAGS="$CFLAGS -I/c/OpenSSL-$TEST/include" + LDFLAGS="-L/c/OpenSSL-$TEST" + export LDFLAGS fi CFLAGS="$CFLAGS -mno-ms-bitfields" DEPS="gcc-mingw-w64-base"