2012-10-13 22:36:39 +02:00
|
|
|
This patch changes Guile to use a default search path relative to the
|
|
|
|
location of the `guile' binary, allowing it to be relocated.
|
|
|
|
|
|
|
|
--- a/libguile/load.c
|
|
|
|
+++ b/libguile/load.c
|
|
|
|
@@ -26,6 +26,7 @@
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
+#include <libgen.h>
|
|
|
|
|
|
|
|
#include "libguile/_scm.h"
|
2016-08-21 12:01:14 +02:00
|
|
|
#include "libguile/alist.h"
|
|
|
|
@@ -325,6 +326,32 @@
|
2012-10-13 22:36:39 +02:00
|
|
|
SCM cpath = SCM_EOL;
|
|
|
|
|
|
|
|
#ifdef SCM_LIBRARY_DIR
|
2012-10-17 17:47:23 +02:00
|
|
|
+ char *program, *bin_dir, *prefix, *module_dir, *ccache_dir;
|
2012-10-13 22:36:39 +02:00
|
|
|
+
|
|
|
|
+ /* Determine the source and compiled module directories at run-time,
|
2012-10-17 17:47:23 +02:00
|
|
|
+ relative to the executable's location.
|
2012-10-13 22:36:39 +02:00
|
|
|
+
|
2012-10-17 17:47:23 +02:00
|
|
|
+ Note: Use /proc/self/exe instead of argv[0] because the latter is
|
|
|
|
+ not necessarily an absolute, nor a valid file name. */
|
|
|
|
+
|
|
|
|
+ program = scm_gc_malloc_pointerless (256, "string");
|
|
|
|
+ readlink ("/proc/self/exe", program, 256);
|
|
|
|
+
|
|
|
|
+ bin_dir = dirname (strdupa (program));
|
2012-10-13 22:36:39 +02:00
|
|
|
+
|
|
|
|
+ prefix = scm_gc_malloc_pointerless (strlen (bin_dir) + 4, "string");
|
|
|
|
+ strcpy (prefix, bin_dir);
|
|
|
|
+ strcat (prefix, "/..");
|
|
|
|
+ prefix = canonicalize_file_name (prefix);
|
|
|
|
+
|
|
|
|
+ module_dir = scm_gc_malloc_pointerless (strlen (prefix) + 50, "string");
|
|
|
|
+ strcpy (module_dir, prefix);
|
|
|
|
+ strcat (module_dir, "/share/guile/2.0");
|
|
|
|
+
|
|
|
|
+ ccache_dir = scm_gc_malloc_pointerless (strlen (prefix) + 50, "string");
|
|
|
|
+ strcpy (ccache_dir, prefix);
|
|
|
|
+ strcat (ccache_dir, "/lib/guile/2.0/ccache");
|
|
|
|
+
|
2016-08-21 12:01:14 +02:00
|
|
|
env = scm_i_mirror_backslashes (getenv ("GUILE_SYSTEM_PATH"));
|
2012-10-13 22:36:39 +02:00
|
|
|
if (env && strcmp (env, "") == 0)
|
|
|
|
/* special-case interpret system-path=="" as meaning no system path instead
|
2016-08-21 12:01:14 +02:00
|
|
|
@@ -333,10 +360,7 @@
|
2012-10-13 22:36:39 +02:00
|
|
|
else if (env)
|
|
|
|
path = scm_parse_path (scm_from_locale_string (env), path);
|
|
|
|
else
|
|
|
|
- path = scm_list_4 (scm_from_locale_string (SCM_LIBRARY_DIR),
|
2012-10-17 17:47:23 +02:00
|
|
|
- scm_from_locale_string (SCM_SITE_DIR),
|
|
|
|
- scm_from_locale_string (SCM_GLOBAL_SITE_DIR),
|
|
|
|
- scm_from_locale_string (SCM_PKGDATA_DIR));
|
|
|
|
+ path = scm_list_1 (scm_from_locale_string (module_dir));
|
|
|
|
|
2016-08-21 12:01:14 +02:00
|
|
|
env = scm_i_mirror_backslashes (getenv ("GUILE_SYSTEM_COMPILED_PATH"));
|
2012-10-17 17:47:23 +02:00
|
|
|
if (env && strcmp (env, "") == 0)
|
2016-08-21 12:01:14 +02:00
|
|
|
@@ -346,8 +370,7 @@
|
2012-10-13 22:36:39 +02:00
|
|
|
cpath = scm_parse_path (scm_from_locale_string (env), cpath);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
- cpath = scm_list_2 (scm_from_locale_string (SCM_CCACHE_DIR),
|
2012-10-17 17:47:23 +02:00
|
|
|
- scm_from_locale_string (SCM_SITE_CCACHE_DIR));
|
|
|
|
+ cpath = scm_list_1 (scm_from_locale_string (ccache_dir));
|
2012-10-13 22:36:39 +02:00
|
|
|
}
|
|
|
|
|
2012-10-17 17:47:23 +02:00
|
|
|
#endif /* SCM_LIBRARY_DIR */
|