From 0231446006e40452c72f225b1ef48994e7a55154 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Fri, 1 Oct 2021 00:56:59 -0500 Subject: [PATCH] configure.ac: don't warn about loading real async files if async.c is present and non-empty. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ee9600c65..addff8ed9 100644 --- a/configure.ac +++ b/configure.ac @@ -7658,7 +7658,7 @@ fi # $silent != yes # Show warnings at bottom so they are noticed ################################################################################ -if test "$ENABLED_ASYNCCRYPT" = "yes" +if test "$ENABLED_ASYNCCRYPT" = "yes" && ! test -s $srcdir/wolfcrypt/src/async.c then AC_MSG_WARN([Make sure real async files are loaded. Contact wolfSSL for details on using the asynccrypt option.]) fi