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

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

View File

@ -168,8 +168,8 @@ am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/ac/ar-lib \
$(top_srcdir)/ac/ltmain.sh $(top_srcdir)/ac/missing \
$(top_srcdir)/ac/tap-driver.sh $(top_srcdir)/ac/test-driver \
$(top_srcdir)/pkgs/hawk.spec.in README.md ac/ar-lib ac/compile \
ac/config.guess ac/config.sub ac/install-sh ac/ltmain.sh \
ac/missing
ac/config.guess ac/config.sub ac/depcomp ac/install-sh \
ac/ltmain.sh ac/missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)

4
configure vendored
View File

@ -1551,7 +1551,7 @@ Optional Features:
--enable-libltdl use libltdl(default. no)
--enable-libunwind use libunwind(default. no)
--enable-static-module build basic modules statically into the main
library(default. no)
library(default. yes)
--enable-mod-ffi enable mod/ffi. one of auto, auto:static, yes,
yes:static, no (default. auto)
--enable-mod-memc enable mod/memc. one of auto, auto:static, yes,
@ -27999,7 +27999,7 @@ if test ${enable_static_module+y}
then :
enableval=$enable_static_module; enable_static_module_is=$enableval
else case e in #(
e) enable_static_module_is=no
e) enable_static_module_is=yes
;;
esac
fi

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