diff --git a/Makefile.in b/Makefile.in index e52f8394..58c6b445 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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) diff --git a/configure b/configure index 45af6e73..53a28eac 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.ac b/configure.ac index 0b47c8a1..8d2ab785 100644 --- a/configure.ac +++ b/configure.ac @@ -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