From: Tobias Brunner Date: Fri, 28 Jul 2017 08:12:33 +0000 (+0200) Subject: appveyor: Build against OpenSSL X-Git-Tag: 5.6.0dr4~5^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=096626286abf6bc73755d1cc352a672be90f6934;p=thirdparty%2Fstrongswan.git appveyor: Build against OpenSSL This is mainly for the RNG needed for the exchange tests. --- diff --git a/scripts/test.sh b/scripts/test.sh index 238102f320..e3bc37e302 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"