diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-02-05 06:10:54 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-02-05 06:10:54 +0000 |
commit | 3ea9b25be8a7bc793c3f85a9a7d9cc454ed6e52b (patch) | |
tree | 22361078cef46ac2b019b83c9a6d6537ed72ab21 /lang/guile/files/patch-libguile_load.c | |
parent | Make it compilable with newer bison. (diff) |
* Teach guile about LOCALBASE and X11BASE when looking for scheme modules
* Assign maintainership to gnome
Notes
Notes:
svn path=/head/; revision=74791
Diffstat (limited to 'lang/guile/files/patch-libguile_load.c')
-rw-r--r-- | lang/guile/files/patch-libguile_load.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/guile/files/patch-libguile_load.c b/lang/guile/files/patch-libguile_load.c new file mode 100644 index 000000000000..6cc5eb43b0b6 --- /dev/null +++ b/lang/guile/files/patch-libguile_load.c @@ -0,0 +1,11 @@ +--- libguile/load.c.orig Tue Feb 4 21:05:24 2003 ++++ libguile/load.c Tue Feb 4 21:19:39 2003 +@@ -239,6 +239,8 @@ + path = scm_listify (scm_makfrom0str (SCM_SITE_DIR), + scm_makfrom0str (SCM_LIBRARY_DIR), + scm_makfrom0str (SCM_PKGDATA_DIR), ++ scm_makfrom0str ("%%X11BASE%%/share/guile"), ++ scm_makfrom0str ("%%LOCALBASE%%/share/guile"), + SCM_UNDEFINED); + #endif /* SCM_LIBRARY_DIR */ + |