Browse Source

mbedtls: Make rc4, camellia, blowfish cipher checks optional

Per Felix Fietkau's request in https://github.com/lede-project/source/pull/657

Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
pull/1044/head
Syrone Wong 7 years ago
committed by Max Lv
parent
commit
637f207934
1 changed files with 3 additions and 3 deletions
  1. 6
      m4/mbedtls.m4

6
m4/mbedtls.m4

@ -57,7 +57,7 @@ AC_DEFUN([ss_MBEDTLS],
]]
)],
[AC_MSG_RESULT([ok])],
[AC_MSG_ERROR([MBEDTLS_ARC4_C required])]
[AC_MSG_WARN([We will continue without ARC4 stream cipher support, MBEDTLS_ARC4_C required])]
)
AC_MSG_CHECKING([whether mbedtls supports the Blowfish block cipher or not])
@ -73,7 +73,7 @@ AC_DEFUN([ss_MBEDTLS],
]]
)],
[AC_MSG_RESULT([ok])],
[AC_MSG_ERROR([MBEDTLS_BLOWFISH_C required])]
[AC_MSG_WARN([We will continue without Blowfish block cipher support, MBEDTLS_BLOWFISH_C required])]
)
AC_MSG_CHECKING([whether mbedtls supports the Camellia block cipher or not])
@ -89,6 +89,6 @@ AC_DEFUN([ss_MBEDTLS],
]]
)],
[AC_MSG_RESULT([ok])],
[AC_MSG_ERROR([MBEDTLS_CAMELLIA_C required])]
[AC_MSG_WARN([We will continue without Camellia block cipher support, MBEDTLS_CAMELLIA_C required])]
)
])
Loading…
Cancel
Save