1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

[spidermonkey] bump mozjs to 128

This commit is contained in:
Witold Filipczyk 2024-10-07 20:23:21 +02:00
parent aa7cafdad7
commit 96a3f22a3c
2 changed files with 3 additions and 3 deletions

View File

@ -788,8 +788,8 @@ SPIDERMONKEY_FOUND=
if test "x$CONFIG_SPIDERMONKEY" = xyes ||
test "x$CONFIG_SCRIPTING_SPIDERMONKEY" = xyes; then
package=mozjs-115
AC_MSG_CHECKING([for SpiderMonkey (mozjs-115) in pkg-config $package])
package=mozjs-128
AC_MSG_CHECKING([for SpiderMonkey (mozjs-128) in pkg-config $package])
if $PKG_CONFIG $pkg_config_static --cflags --libs $package > /dev/null 2>&AS_MESSAGE_LOG_FD; then
DB_LOCALSTORAGE_LIBS="$($PKG_CONFIG $pkg_config_static --libs sqlite3)"
CURL_LIBS="$($PKG_CONFIG $pkg_config_static --libs libcurl)"

View File

@ -505,7 +505,7 @@ endif
mozjsdeps = []
if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_SCRIPTING_SPIDERMONKEY')
mozjsdeps = dependency('mozjs-115', static: st)
mozjsdeps = dependency('mozjs-128', static: st)
deps += mozjsdeps
endif