diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-12-13 09:55:26 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-12-13 09:55:26 -0500 |
commit | 2e1377c06cf741b4e618c186a4fa8af9c33f319a (patch) | |
tree | 469e59ad74e91bd243f6cd2f210e0bb7614dc7c2 /manuals/haunt/Building.html | |
parent | 1d1d6ccae479193619c11a65f399298bbca05c25 (diff) |
Update Haunt manual.
Diffstat (limited to 'manuals/haunt/Building.html')
-rw-r--r-- | manuals/haunt/Building.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/manuals/haunt/Building.html b/manuals/haunt/Building.html index 096a619..6ff3861 100644 --- a/manuals/haunt/Building.html +++ b/manuals/haunt/Building.html @@ -41,8 +41,31 @@ span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} +@media (min-width: 1140px) { + body { + margin-left: 14rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (min-width: 800px) and (max-width: 1140px) { + body { + margin-left: 6rem; + margin-right: 4rem; + max-width: 52rem; + } +} + +@media (max-width: 800px) { + body { + margin: 1rem; + } +} + --> </style> +<link rel="stylesheet" type="text/css" href="https://dthompson.us/css/dthompson.css"> </head> @@ -64,6 +87,26 @@ make make install </pre></div> +<p>This will install Haunt to <samp>/usr/local/</samp>. This is not part of +the default load path for GNU Guile if you installed it from your +distribution’s package manager (<samp>/usr</samp> is.) You may choose to +change the prefix to your GNU Guile’s location with <code>./configure +--prefix=/usr</code> or add <samp>/usr/local/</samp> to GNU Guile’s load path in +your shell environment like this (replacing 3.0 with your GNU Guile +version): +</p> +<div class="example"> +<pre class="example">export GUILE_LOAD_PATH="/usr/local/share/guile/site/3.0\ +${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH" + +export GUILE_LOAD_COMPILED_PATH="/usr/local/lib/guile/3.0/site-ccache\ +${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_COMPILED_LOAD_PATH" +</pre></div> + +<p>(see <a href="https://www.gnu.org/software/guile/manual/html_node/Environment-Variables.html#Environment-Variables">Environment Variables</a> in <cite>GNU +Guile Reference Manual</cite> for more details on <code>GUILE_LOAD_PATH</code> and +<code>GUILE_LOAD_COMPILED_PATH</code>.) +</p> |