Stack Trace: _______________________________________ 0 (slib:load (in-vicinity (library-vicinity) "require")) At line 389 of "/usr/local/share/gauche/0.8.6/lib/slib.scm" ----
gauche-config --syslibdirで表示されたファイルは /usr/local/share/gauche/0.8.6/lib だったので /usr/local/share/gauche/0.8.6/lib/slib.scm を編集しました。 ---- (define library-vicinity (let ((library-path (or ;; Use this getenv if your implementation supports it. (sys-getenv "SCHEME_LIBRARY_PATH") ;; Use this path if your scheme does not support GETENV ;; or if SCHEME_LIBRARY_PATH is not set. (case (software-type) ;((UNIX) "/usr/local/slib/") ((UNIX) "/usr/share/umb-scheme/slib") <-------------編集 ((VMS) "lib$scheme:") ((MS-DOS) "C:\\SLIB\\") (else ""))))) (lambda () library-path))) ----