aboutsummaryrefslogtreecommitdiffstats
path: root/mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-08-14 19:57:38 -0400
committerGravatar Peter McGoron 2025-08-14 19:57:38 -0400
commit485c0179af8069df808a1359c1112101119722c9 (patch)
treebc890b6f2e48450d6b643aadfaf8d98b3ed5448a /mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch
parentwrapper-based module loading for foment (diff)
working path append wrapper, add r6rs
Diffstat (limited to 'mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch')
-rw-r--r--mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch b/mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch
deleted file mode 100644
index 309681b..0000000
--- a/mcgoron/guix/patches/chibi-scheme-0.11-library-path.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/eval.c b/eval.c
-index 8a7f0de2..41239fa4 100644
---- a/eval.c
-+++ b/eval.c
-@@ -509,9 +509,16 @@ void sexp_init_eval_context_globals (sexp ctx) {
- sexp_init_eval_context_bytecodes(ctx);
- #endif
- sexp_global(ctx, SEXP_G_MODULE_PATH) = SEXP_NULL;
-+
-+
-+ user_path = getenv("R7RS_LIBRARY_PATH");
-+ if (user_path)
-+ sexp_add_path(ctx, user_path);
-+
- user_path = getenv(SEXP_MODULE_PATH_VAR);
- if (!user_path) user_path = sexp_default_user_module_path;
- sexp_add_path(ctx, user_path);
-+
- no_sys_path = getenv(SEXP_NO_SYSTEM_PATH_VAR);
- if (!no_sys_path || strcmp(no_sys_path, "0")==0)
- sexp_add_path(ctx, sexp_default_module_path);