mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-04-21 06:07:32 -04:00
Remove option to disable crypto engine
With this patch we remove the possibility to disable the crypto engine (ENABLE_CRYPTO define) at configuration time. [--disable-crypto has been removed from .travis.yml too] Signed-off-by: Antonio Quartulli <a@unstable.cc> Acked-by: Steffan Karger <steffan.karger@fox-it.com> Message-Id: <20171203124952.15220-1-a@unstable.cc> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg15979.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
parent
c7ca91332d
commit
cf49ff5031
7 changed files with 9 additions and 34 deletions
|
|
@ -59,10 +59,7 @@ matrix:
|
|||
- env: SSLLIB="openssl" CHOST=i686-w64-mingw32
|
||||
os: linux
|
||||
compiler: ": Win32 build only"
|
||||
- env: SSLLIB="openssl" EXTRA_CONFIG="--disable-crypto" EXTRA_SCRIPT="make distcheck"
|
||||
os: linux
|
||||
compiler: clang
|
||||
- env: SSLLIB="openssl" EXTRA_CONFIG="--disable-lzo"
|
||||
- env: SSLLIB="openssl" EXTRA_CONFIG="--disable-lzo" EXTRA_SCRIPT="make distcheck"
|
||||
os: linux
|
||||
compiler: clang
|
||||
- env: SSLLIB="openssl" EXTRA_CONFIG="--enable-small"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
|
||||
#define ENABLE_DEF_AUTH 1
|
||||
#define ENABLE_PF 1
|
||||
#define ENABLE_CRYPTO 1
|
||||
#define ENABLE_CRYPTO_OPENSSL 1
|
||||
#define ENABLE_DEBUG 1
|
||||
#define ENABLE_EUREPHIA 1
|
||||
|
|
|
|||
29
configure.ac
29
configure.ac
|
|
@ -77,13 +77,6 @@ AC_ARG_ENABLE(comp-stub,
|
|||
[enable_comp_stub="no"]
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(
|
||||
[crypto],
|
||||
[AS_HELP_STRING([--disable-crypto], [disable crypto support @<:@default=yes@:>@])],
|
||||
,
|
||||
[enable_crypto="yes"]
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(
|
||||
[ofb-cfb],
|
||||
[AS_HELP_STRING([--disable-ofb-cfb], [disable support for OFB and CFB cipher modes @<:@default=yes@:>@])],
|
||||
|
|
@ -843,7 +836,7 @@ PKG_CHECK_MODULES(
|
|||
[]
|
||||
)
|
||||
|
||||
if test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "openssl"; then
|
||||
if test "${with_crypto_library}" = "openssl"; then
|
||||
AC_ARG_VAR([OPENSSL_CFLAGS], [C compiler flags for OpenSSL])
|
||||
AC_ARG_VAR([OPENSSL_LIBS], [linker flags for OpenSSL])
|
||||
|
||||
|
|
@ -958,11 +951,10 @@ if test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "openssl"; then
|
|||
CFLAGS="${saved_CFLAGS}"
|
||||
LIBS="${saved_LIBS}"
|
||||
|
||||
have_crypto="yes"
|
||||
AC_DEFINE([ENABLE_CRYPTO_OPENSSL], [1], [Use OpenSSL library])
|
||||
CRYPTO_CFLAGS="${OPENSSL_CFLAGS}"
|
||||
CRYPTO_LIBS="${OPENSSL_LIBS}"
|
||||
elif test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "mbedtls"; then
|
||||
elif test "${with_crypto_library}" = "mbedtls"; then
|
||||
AC_ARG_VAR([MBEDTLS_CFLAGS], [C compiler flags for mbedtls])
|
||||
AC_ARG_VAR([MBEDTLS_LIBS], [linker flags for mbedtls])
|
||||
|
||||
|
|
@ -1041,11 +1033,10 @@ elif test "${enable_crypto}" = "yes" -a "${with_crypto_library}" = "mbedtls"; th
|
|||
|
||||
CFLAGS="${saved_CFLAGS}"
|
||||
LIBS="${saved_LIBS}"
|
||||
have_crypto="yes"
|
||||
AC_DEFINE([ENABLE_CRYPTO_MBEDTLS], [1], [Use mbed TLS library])
|
||||
CRYPTO_CFLAGS="${MBEDTLS_CFLAGS}"
|
||||
CRYPTO_LIBS="${MBEDTLS_LIBS}"
|
||||
elif test "${enable_crypto}" = "yes"; then
|
||||
else
|
||||
AC_MSG_ERROR([Invalid crypto library: ${with_crypto_library}])
|
||||
fi
|
||||
|
||||
|
|
@ -1245,14 +1236,10 @@ test "${enable_def_auth}" = "yes" && AC_DEFINE([ENABLE_DEF_AUTH], [1], [Enable d
|
|||
test "${enable_pf}" = "yes" && AC_DEFINE([ENABLE_PF], [1], [Enable internal packet filter])
|
||||
test "${enable_strict_options}" = "yes" && AC_DEFINE([ENABLE_STRICT_OPTIONS_CHECK], [1], [Enable strict options check between peers])
|
||||
|
||||
if test "${enable_crypto}" = "yes"; then
|
||||
test "${have_crypto}" != "yes" && AC_MSG_ERROR([${with_crypto_library} crypto is required but missing])
|
||||
test "${enable_crypto_ofb_cfb}" = "yes" && AC_DEFINE([ENABLE_OFB_CFB_MODE], [1], [Enable OFB and CFB cipher modes])
|
||||
test "${have_crypto_aead_modes}" = "yes" && AC_DEFINE([HAVE_AEAD_CIPHER_MODES], [1], [Use crypto library])
|
||||
OPTIONAL_CRYPTO_CFLAGS="${OPTIONAL_CRYPTO_CFLAGS} ${CRYPTO_CFLAGS}"
|
||||
OPTIONAL_CRYPTO_LIBS="${OPTIONAL_CRYPTO_LIBS} ${CRYPTO_LIBS}"
|
||||
AC_DEFINE([ENABLE_CRYPTO], [1], [Enable crypto library])
|
||||
fi
|
||||
test "${enable_crypto_ofb_cfb}" = "yes" && AC_DEFINE([ENABLE_OFB_CFB_MODE], [1], [Enable OFB and CFB cipher modes])
|
||||
test "${have_crypto_aead_modes}" = "yes" && AC_DEFINE([HAVE_AEAD_CIPHER_MODES], [1], [Use crypto library])
|
||||
OPTIONAL_CRYPTO_CFLAGS="${OPTIONAL_CRYPTO_CFLAGS} ${CRYPTO_CFLAGS}"
|
||||
OPTIONAL_CRYPTO_LIBS="${OPTIONAL_CRYPTO_LIBS} ${CRYPTO_LIBS}"
|
||||
|
||||
if test "${enable_plugins}" = "yes"; then
|
||||
OPTIONAL_DL_LIBS="${DL_LIBS}"
|
||||
|
|
@ -1292,7 +1279,6 @@ fi
|
|||
|
||||
if test "${enable_pkcs11}" = "yes"; then
|
||||
test "${have_pkcs11_helper}" != "yes" && AC_MSG_ERROR([PKCS11 enabled but libpkcs11-helper is missing])
|
||||
test "${enable_crypto}" != "yes" && AC_MSG_ERROR([PKCS11 can be enabled only if crypto is enabled])
|
||||
OPTIONAL_PKCS11_HELPER_CFLAGS="${PKCS11_HELPER_CFLAGS}"
|
||||
OPTIONAL_PKCS11_HELPER_LIBS="${PKCS11_HELPER_LIBS}"
|
||||
AC_DEFINE([ENABLE_PKCS11], [1], [Enable PKCS11])
|
||||
|
|
@ -1372,7 +1358,6 @@ AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])
|
|||
AM_CONDITIONAL([GIT_CHECKOUT], [test "${GIT_CHECKOUT}" = "yes"])
|
||||
AM_CONDITIONAL([ENABLE_PLUGIN_AUTH_PAM], [test "${enable_plugin_auth_pam}" = "yes"])
|
||||
AM_CONDITIONAL([ENABLE_PLUGIN_DOWN_ROOT], [test "${enable_plugin_down_root}" = "yes"])
|
||||
AM_CONDITIONAL([ENABLE_CRYPTO], [test "${enable_crypto}" = "yes"])
|
||||
AM_CONDITIONAL([HAVE_LD_WRAP_SUPPORT], [test "${have_ld_wrap_support}" = "yes"])
|
||||
|
||||
sampledir="\$(docdir)/sample"
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ EXPAND_ONLY_PREDEF = NO
|
|||
SEARCH_INCLUDES = YES
|
||||
INCLUDE_PATH =
|
||||
INCLUDE_FILE_PATTERNS =
|
||||
PREDEFINED = _WIN32 NTLM USE_LZO ENABLE_FRAGMENT P2MP P2MP_SERVER ENABLE_CRYPTO ENABLE_CRYPTO_OPENSSL ENABLE_PLUGIN ENABLE_MANAGEMENT ENABLE_OCC HAVE_GETTIMEOFDAY
|
||||
PREDEFINED = _WIN32 NTLM USE_LZO ENABLE_FRAGMENT P2MP P2MP_SERVER ENABLE_CRYPTO_OPENSSL ENABLE_PLUGIN ENABLE_MANAGEMENT ENABLE_OCC HAVE_GETTIMEOFDAY
|
||||
EXPAND_AS_DEFINED =
|
||||
SKIP_FUNCTION_MACROS = YES
|
||||
#---------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -27,8 +27,6 @@
|
|||
* See the README file for build instructions.
|
||||
*/
|
||||
|
||||
#define ENABLE_CRYPTO
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
|
|
|||
|
|
@ -35,8 +35,6 @@
|
|||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define ENABLE_CRYPTO
|
||||
|
||||
#include "openvpn-plugin.h"
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -15,9 +15,7 @@ MAINTAINERCLEANFILES = \
|
|||
SUBDIRS = unit_tests
|
||||
|
||||
test_scripts = t_client.sh
|
||||
if ENABLE_CRYPTO
|
||||
test_scripts += t_lpback.sh t_cltsrv.sh
|
||||
endif
|
||||
|
||||
TESTS_ENVIRONMENT = top_srcdir="$(top_srcdir)"
|
||||
TESTS = $(test_scripts)
|
||||
|
|
|
|||
Loading…
Reference in a new issue