From 0becc347b13c0aa02d221d3fc987dd3d735462c9 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 20 Aug 2024 00:25:15 -0500 Subject: [PATCH] configure.ac: inhibit options.h reminder message when --quiet. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 4021b12502..46db1b5b8d 100644 --- a/configure.ac +++ b/configure.ac @@ -10436,6 +10436,10 @@ if test -n "$WITH_MAX_ECC_BITS"; then fi fi +if test "$silent" != "yes"; then + echo "---" echo "Note: Make sure your application includes \"wolfssl/options.h\" before any other wolfSSL headers." echo " You can define \"WOLFSSL_USE_OPTIONS_H\" in your application to include this automatically." + +fi