mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 06:41:13 +02:00
Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
* * load.c (scm_init_load_path): Append $(datadir)/guile to %load-path, so modules do not have to be installed in Guile's current version directory.
This commit is contained in:
parent
e035e7e68b
commit
5540787919
2 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
|
||||||
|
|
||||||
|
* * load.c (scm_init_load_path): Append $(datadir)/guile to
|
||||||
|
%load-path, so modules do not have to be installed in Guile's
|
||||||
|
current version directory.
|
||||||
|
|
||||||
Mon Jun 16 17:20:55 1997 Marius Vollmer <mvo@zagadka.ping.de>
|
Mon Jun 16 17:20:55 1997 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* dynl.c (scm_dynamic_call, scm_dynamic_args_call): Wrap dynamic
|
* dynl.c (scm_dynamic_call, scm_dynamic_args_call): Wrap dynamic
|
||||||
|
|
|
@ -129,9 +129,10 @@ scm_init_load_path ()
|
||||||
SCM path = SCM_EOL;
|
SCM path = SCM_EOL;
|
||||||
|
|
||||||
#ifdef SCM_LIBRARY_DIR
|
#ifdef SCM_LIBRARY_DIR
|
||||||
path = scm_cons2 (scm_makfrom0str (SCM_SITE_DIR),
|
path = scm_listify (scm_makfrom0str (SCM_SITE_DIR),
|
||||||
scm_makfrom0str (SCM_LIBRARY_DIR),
|
scm_makfrom0str (SCM_LIBRARY_DIR),
|
||||||
path);
|
scm_makfrom0str (SCM_PKGDATA_DIR),
|
||||||
|
SCM_UNDEFINED);
|
||||||
#endif /* SCM_LIBRARY_DIR */
|
#endif /* SCM_LIBRARY_DIR */
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue