changed the default value of --enable-static-module from no to yes

This commit is contained in:
2025-05-25 17:39:06 +09:00
parent 4478ab6677
commit 05866d4353
3 changed files with 6 additions and 6 deletions

View File

@ -949,9 +949,9 @@ AM_CONDITIONAL(ENABLE_LIBUNWIND, test "x${enable_libunwind_is}" = "xyes")
dnl ===== enable-static-module =====
AC_ARG_ENABLE([static-module],
[AS_HELP_STRING([--enable-static-module],[build basic modules statically into the main library(default. no)])],
[AS_HELP_STRING([--enable-static-module],[build basic modules statically into the main library(default. yes)])],
enable_static_module_is=$enableval,
enable_static_module_is=no
enable_static_module_is=yes
)
if test "x${enable_shared}" = "xno" -a "x${enable_static}" = "xyes"
then