Commit b93636021c494f2d2ff4316e97cc0ac3dc7025e9
1 parent
d310058a
Exists in
develop
Disabling FIPS tests
Fixing win32 builds
Showing
6 changed files
with
2 additions
and
24 deletions
Show diff stats
PKGBUILD.mingw
... | ... | @@ -30,7 +30,7 @@ url="https://github.com/PerryWerneck/${_realname}" |
30 | 30 | arch=(i686 x86_64) |
31 | 31 | license=(LGPL-3.0-or-later) |
32 | 32 | depends=(${MINGW_PACKAGE_PREFIX}-openssl) |
33 | -makedepends=(autoconf automake make libtool gzip dos2unix ${MINGW_PACKAGE_PREFIX}-openssl) | |
33 | +makedepends=(autoconf automake make libtool pkgconf gzip dos2unix ${MINGW_PACKAGE_PREFIX}-gcc ${MINGW_PACKAGE_PREFIX}-gettext ${MINGW_PACKAGE_PREFIX}-openssl) | |
34 | 34 | checkdepends=() |
35 | 35 | |
36 | 36 | provides=($pkgname) | ... | ... |
configure.ac
... | ... | @@ -394,19 +394,6 @@ dnl --------------------------------------------------------------------------- |
394 | 394 | dnl SSL Security options |
395 | 395 | dnl --------------------------------------------------------------------------- |
396 | 396 | |
397 | -AC_ARG_ENABLE([fips], | |
398 | - [AS_HELP_STRING([--disable-fips], [Disable OpenSSL FIPS])], | |
399 | -[ | |
400 | - app_cv_fips="$enableval" | |
401 | -],[ | |
402 | - AC_CHECK_HEADER(openssl/fips.h, app_cv_fips="yes", AC_MSG_NOTICE(fips.h is not available)) | |
403 | - | |
404 | -]) | |
405 | - | |
406 | -if test "$app_cv_fips" == "yes"; then | |
407 | - AC_DEFINE(HAVE_FIPS_H, 1, [FIPS Header is available]) | |
408 | -fi | |
409 | - | |
410 | 397 | AC_ARG_ENABLE([self-signed-cert-check], |
411 | 398 | [AS_HELP_STRING([--enable-self-signed-cert-check], [Emit Warning when host presents a self signed certificate])], |
412 | 399 | [ | ... | ... |
src/core/windows/util.c
src/include/config.h.in
src/network_modules/openssl/context.c
src/testprogram/testprogram.c