configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 437b4d802ccec2eb1395a4e4137a4a0af039de5a
Author: Stephan Bergmann <[email protected]>
AuthorDate: Fri Feb 7 15:57:35 2025 +0100
Commit: Stephan Bergmann <[email protected]>
CommitDate: Fri Feb 7 17:49:30 2025 +0100
Fix default value of Emscripten --with-main-module
...broken by 12ed25fb94fbbee15389467dc6ae02eddf811c34 "Support Emscripten
--with-main-module="
Change-Id: I0dc3e32e4fbc0f4c90fd11b6ac56ec3ac6d67ae5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181259
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <[email protected]>
diff --git a/configure.ac b/configure.ac
index 67cf30a8046a..4ee1e3c3b39d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2190,7 +2190,7 @@ AC_ARG_WITH(main-module,
AS_HELP_STRING([--with-main-module=<writer/calc>],
[Specify which main module to build for wasm.
Default value is 'writer'.]),
-,)
+, [with_main_module=calc,writer])
if test "$_os" = Emscripten; then
AC_ARG_ENABLE(emscripten-jspi,