Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9c6f975

Browse files
committedMay 22, 2024·
configure: Move "experimental" warning to bottom
to make it more promiment
1 parent 727b0d3 commit 9c6f975

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed
 

‎configure.ac

+8-6
Original file line numberDiff line numberDiff line change
@@ -440,12 +440,7 @@ fi
440440
### Check for --enable-experimental if necessary
441441
###
442442

443-
if test x"$enable_experimental" = x"yes"; then
444-
AC_MSG_NOTICE([******])
445-
AC_MSG_NOTICE([WARNING: experimental build])
446-
AC_MSG_NOTICE([Experimental features do not have stable APIs or properties, and may not be safe for production use.])
447-
AC_MSG_NOTICE([******])
448-
else
443+
if test x"$enable_experimental" = x"no"; then
449444
if test x"$set_asm" = x"arm32"; then
450445
AC_MSG_ERROR([ARM32 assembly is experimental. Use --enable-experimental to allow.])
451446
fi
@@ -513,3 +508,10 @@ if test x"$print_msan_notice" = x"yes"; then
513508
echo " MemorySanitizer detected, tried to add -fno-sanitize-memory-param-retval to SECP_CFLAGS"
514509
echo " to avoid false positives in ctime_tests. Pass --disable-ctime-tests to avoid this."
515510
fi
511+
512+
if test x"$enable_experimental" = x"yes"; then
513+
echo
514+
echo "WARNING: Experimental build"
515+
echo " Experimental features do not have stable APIs or properties, and may not be safe for"
516+
echo " production use."
517+
fi

0 commit comments

Comments
 (0)
Please sign in to comment.