You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only OpenSSL 1.1.1 and 3.0(via engine) is supported. All other versions are not supported. Signed-off-by: Yogaraj Alamenda <yogarajx.alamenda@intel.com>
if test "`grep "define OPENSSL_VERSION_NUMBER 0x101000" $with_openssl_install_dir/include/openssl/opensslv.h | wc -l`" = "1"
275
-
then
276
-
if test "x$with_openssl_dir" = "x"
277
-
then
278
-
AC_MSG_ERROR([OpenSSL version 1.1.0! Additional flag "--with-openssl_dir" pointing to the OpenSSL source dir needs to be configured for OpenSSL 1.1.0 to regenerate err files])
if test "`grep "define OPENSSL_VERSION_NUMBER 0x10100" $includes_openssl/openssl/opensslv.h | wc -l`" = "1"
295
-
then
296
-
AC_MSG_ERROR([OpenSSL version in the system is less than 1.1.1. Either update system OpenSSL to 1.1.1 or Use "--with-openssl_install_dir" pointing to the path where OpenSSL downloaded from source is installed. Additional flag "--with-openssl_dir" pointing to the OpenSSL source dir needs to be configured for OpenSSL 1.1.0])
297
-
fi
298
285
fi
299
286
AC_MSG_NOTICE([Install engine in the system OpenSSL enginesdir Path])
# OpenSSL source dir to regenerate err file for OpenSSL 1.1.0
359
+
# OpenSSL source dir to regenerate err files if any changes in err messages
374
360
if test "x$with_openssl_dir" = "x"
375
361
then
376
362
AC_MSG_NOTICE([Build with existing error files without regenerating from OpenSSL source])
377
-
else if test "x$with_openssl_dir" = "xno"
378
-
then
379
-
AC_MSG_ERROR([--without-openssl_dir is invalid, set using --with-openssl_dir to the path to the OpenSSL source code. e.g: --with-openssl_dir=/path/to/openssl])
0 commit comments