configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a9f77afabf98d98e14308a82aab86a2a3715fced
Author:     Julien Nabet <serval2...@yahoo.fr>
AuthorDate: Sat May 25 13:27:36 2024 +0200
Commit:     Stephan Bergmann <stephan.bergm...@allotropia.de>
CommitDate: Mon May 27 10:00:09 2024 +0200

    Bump emscripten minimum to 2.0.32 for as_handle
    
    Reading https://github.com/emscripten-core/emscripten/blob/main/ChangeLog.md
    val::as_handle() has been added with 2.0.32
    
    It'll allow WASM Jenkins to fail at the configure check step instead in the 
build with:
    
/home/tdf/jenkins/workspace/lo_gerrit/tb/src_wasm/static/source/unoembindhelpers/PrimaryBindings.cxx:231:37:
 error: no member named 'as_handle' in 'emscripten::val'
                    = _emval_as(rObject.as_handle(), getTypeId(rUnoType), 
&destructors);
                                ~~~~~~~ ^
    
/home/tdf/jenkins/workspace/lo_gerrit/tb/src_wasm/static/source/unoembindhelpers/PrimaryBindings.cxx:240:37:
 error: no member named 'as_handle' in 'emscripten::val'
                    = _emval_as(rObject.as_handle(), getTypeId(rUnoType), 
&destructors);
                                ~~~~~~~ ^
    2 errors generated.
    
    Change-Id: I7531256de46cd4b86b6eac9b1f8d16cad7b46ae2
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168035
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de>

diff --git a/configure.ac b/configure.ac
index 88dd106f574a..22c95079f2d8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1433,7 +1433,7 @@ dnl 
===================================================================
 
 EMSCRIPTEN_MIN_MAJOR=2
 EMSCRIPTEN_MIN_MINOR=0
-EMSCRIPTEN_MIN_TINY=31
+EMSCRIPTEN_MIN_TINY=32
 
EMSCRIPTEN_MIN_VERSION="${EMSCRIPTEN_MIN_MAJOR}.${EMSCRIPTEN_MIN_MINOR}.${EMSCRIPTEN_MIN_TINY}"
 
 if test "$_os" = "Emscripten"; then

Reply via email to