diff options
author | marcus <marcus@FreeBSD.org> | 2003-02-05 06:10:54 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-02-05 06:10:54 +0000 |
commit | 45d744b1c6487790537216d0ba640c1f97941cb9 (patch) | |
tree | 218f99252465be923b51255183223890197cb2cf /lang/guile/files | |
parent | 0b3b6985ae1061c6d3c4c31385d44a0307842640 (diff) | |
download | FreeBSD-ports-45d744b1c6487790537216d0ba640c1f97941cb9.zip FreeBSD-ports-45d744b1c6487790537216d0ba640c1f97941cb9.tar.gz |
* Teach guile about LOCALBASE and X11BASE when looking for scheme modules
* Assign maintainership to gnome
Diffstat (limited to 'lang/guile/files')
-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 0000000..6cc5eb4 --- /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 */ + |