Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

export NODE_OPTION to build doc with legacy SSL #1032

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,12 @@ build_tags () {

build_doc () {
feedback_low "Building gerbil hyperspec"
(cd "${GERBIL_BASE}/doc" && npm install && node_modules/vuepress/cli.js dev)
(## For now we only support old node v18 with this option.
## TODO: update node support to a modern node with a modern SSL module.
export NODE_OPTIONS=--openssl-legacy-provider
cd "${GERBIL_BASE}/doc" &&
npm install &&
node_modules/vuepress/cli.js dev)
}

#===============================================================================
Expand Down
2 changes: 1 addition & 1 deletion src/gambit
Submodule gambit updated 73 files
+2 −0 .gitattributes
+1 −1 configure.ac
+12 −15 contrib/try/UI.js
+38 −17 contrib/try/VM.scm
+279 −104 doc/gambit.txi
+3 −3 gsc/_gsclib.scm
+45 −2 gsc/_host.scm
+1 −0 gsc/_prims.scm
+39 −34 gsc/_source.scm
+1 −0 gsc/_t-c-2.scm
+47 −21 gsc/_utils.scm
+4 −0 gsc/fixnum.scm
+2 −2 gsi/main.scm
+20 −10 include/gambit.h.in
+4 −4 lib/_define-library/test/test.scm
+98 −44 lib/_eval.scm
+63 −15 lib/_io#.scm
+53 −24 lib/_io.scm
+10 −0 lib/_kernel#.scm
+190 −18 lib/_kernel.scm
+77 −21 lib/_nonstd.scm
+48 −11 lib/_num.scm
+723 −277 lib/_repl.scm
+28 −20 lib/_system.scm
+37 −37 lib/_test/test/test.scm
+3 −1 lib/_univlib.scm
+51 −4 lib/gambit#.scm
+571 −121 lib/gambit/char/char#.scm
+1,042 −93 lib/gambit/char/char.scm
+67 −3 lib/gambit/char/char.sld
+52 −5 lib/gambit/gambit.sld
+97 −0 lib/gambit/list/list.scm
+2 −1 lib/gambit/prim/char#.scm
+81 −0 lib/gambit/prim/char-gambit#.scm
+51 −1 lib/gambit/prim/char.sld
+4 −1 lib/gambit/prim/list-gambit#.scm
+4 −1 lib/gambit/prim/list.sld
+2 −2 lib/gambit/prim/makefile
+54 −1 lib/gambit/prim/prim.sld
+2 −2 lib/guide/_guide.scm
+128 −88 lib/main.c
+2 −0 lib/makefile.in
+8 −3 lib/module-common.mk.in
+4 −0 lib/os.h
+71 −1 lib/os_shell.c
+15 −1 lib/os_shell.h
+118 −108 lib/os_tty.c
+6 −1 lib/os_tty.h
+2 −2 lib/srfi/14/14#.scm
+3 −832 lib/srfi/14/14.scm
+3 −1 lib/srfi/14/14.sld
+21 −23 lib/srfi/231/generalized-arrays.scm
+82 −14 lib/srfi/231/test-arrays.scm
+78 −10 lib/srfi/231/test/test.scm
+38 −38 lib/srfi/64/test/test.scm
+5 −1 misc/gambit.el
+1 −1 tests/debug.scm
+1 −1 tests/makefile.in
+12 −7 tests/mix.scm
+345 −345 tests/test1.ok
+17 −17 tests/test2.ok
+240 −240 tests/test4.ok
+11 −11 tests/test5.ok
+26 −0 tests/unit-tests/03-number/atan.scm
+2 −1 tests/unit-tests/03-number/log.scm
+32 −0 tests/unit-tests/04-list/any.scm
+0 −0 tests/unit-tests/04-list/split_at.scm
+3 −3 tests/unit-tests/07-vector/string_cmp.scm
+4 −4 tests/unit-tests/07-vector/string_utf8.scm
+4 −4 tests/unit-tests/07-vector/utf8_string.scm
+1 −1 tests/unit-tests/09-io/vect_port.scm
+100 −0 tests/unit-tests/13-modules/prim_char.scm
+3 −0 tests/unit-tests/13-modules/prim_list.scm