From 2e1377c06cf741b4e618c186a4fa8af9c33f319a Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 13 Dec 2021 09:55:26 -0500 Subject: Update Haunt manual. --- manuals/haunt/Building.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'manuals/haunt/Building.html') 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; + } +} + --> + @@ -64,6 +87,26 @@ make make install +

This will install Haunt to /usr/local/. This is not part of +the default load path for GNU Guile if you installed it from your +distribution’s package manager (/usr is.) You may choose to +change the prefix to your GNU Guile’s location with ./configure +--prefix=/usr or add /usr/local/ to GNU Guile’s load path in +your shell environment like this (replacing 3.0 with your GNU Guile +version): +

+
+
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"
+
+ +

(see Environment Variables in GNU +Guile Reference Manual for more details on GUILE_LOAD_PATH and +GUILE_LOAD_COMPILED_PATH.) +

-- cgit v1.2.3