diff options
Diffstat (limited to 'manuals/haunt/Building.html')
-rw-r--r-- | manuals/haunt/Building.html | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/manuals/haunt/Building.html b/manuals/haunt/Building.html deleted file mode 100644 index 8581ac2..0000000 --- a/manuals/haunt/Building.html +++ /dev/null @@ -1,114 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<html> -<!-- Copyright (C) 2015-2021 David Thompson - - -Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.3 or -any later version published by the Free Software Foundation; with no -Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A -copy of the license is included in the section entitled "GNU Free -Documentation License". --> -<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ --> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> -<title>Building (Haunt Reference Manual)</title> - -<meta name="description" content="Building (Haunt Reference Manual)"> -<meta name="keywords" content="Building (Haunt Reference Manual)"> -<meta name="resource-type" content="document"> -<meta name="distribution" content="global"> -<meta name="Generator" content="makeinfo"> -<link href="index.html" rel="start" title="Top"> -<link href="Concept-Index.html" rel="index" title="Concept Index"> -<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents"> -<link href="Installation.html" rel="up" title="Installation"> -<link href="Tutorial.html" rel="next" title="Tutorial"> -<link href="Requirements.html" rel="prev" title="Requirements"> -<style type="text/css"> -<!-- -a.summary-letter {text-decoration: none} -blockquote.indentedblock {margin-right: 0em} -div.display {margin-left: 3.2em} -div.example {margin-left: 3.2em} -div.lisp {margin-left: 3.2em} -kbd {font-style: oblique} -pre.display {font-family: inherit} -pre.format {font-family: inherit} -pre.menu-comment {font-family: serif} -pre.menu-preformatted {font-family: serif} -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> - -<body lang="en"> -<span id="Building"></span><div class="header"> -<p> -Previous: <a href="Requirements.html" accesskey="p" rel="prev">Requirements</a>, Up: <a href="Installation.html" accesskey="u" rel="up">Installation</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p> -</div> -<hr> -<span id="Building-1"></span><h3 class="section">2.3 Building</h3> - -<p>Haunt uses the standard GNU build system, so the basic installation -procedure looks like this: -</p> -<div class="example"> -<pre class="example">./configure -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> - - - -</body> -</html> |