]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
configure: disable crypto-auditing support by default
authorDaiki Ueno <ueno@gnu.org>
Tue, 14 Oct 2025 05:57:00 +0000 (14:57 +0900)
committerDaiki Ueno <ueno@gnu.org>
Tue, 14 Oct 2025 05:57:29 +0000 (14:57 +0900)
Signed-off-by: Daiki Ueno <ueno@gnu.org>
m4/hooks.m4

index dabf01242a23787760d98fdd8296db269d6d7c9b..b0907ca96d6121ba8782163f280d14ddd2e686d8 100644 (file)
@@ -386,11 +386,11 @@ LIBTASN1_MINIMUM=4.9
   AM_CONDITIONAL(ENABLE_OCSP, test "$ac_enable_ocsp" != "no")
 
   # For crypto-auditing trace
-  AC_MSG_CHECKING([whether to disable crypto-auditing trace support])
+  AC_MSG_CHECKING([whether to enable crypto-auditing trace support])
   AC_ARG_ENABLE([crypto-auditing],
-    [AS_HELP_STRING([--disable-crypto-auditing],
-                   [disable crypto-auditing trace support])],
-    [enable_crypto_auditing=$enableval], [enable_crypto_auditing=auto])
+    [AS_HELP_STRING([--enable-crypto-auditing],
+                   [enable crypto-auditing trace support])],
+    [enable_crypto_auditing=$enableval], [enable_crypto_auditing=no])
   AC_MSG_RESULT([$enable_crypto_auditing])
   AC_CHECK_HEADERS([sys/sdt.h])
   AC_CACHE_CHECK([whether <sys/sdt.h> defines DTRACE_PROBE],