diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-05-15 15:34:36 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-05-15 15:34:36 +0200 |
commit | 231f2cb2205988cf87062bc9f595307af1ed827f (patch) | |
tree | f1094bf50677abed5266feb17c65240a45d7a387 /content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html | |
parent | 46e6b5fa84b1ec6e08f124c478909ec745562214 (diff) | |
download | macroblog.rs-231f2cb2205988cf87062bc9f595307af1ed827f.tar.gz macroblog.rs-231f2cb2205988cf87062bc9f595307af1ed827f.tar.bz2 macroblog.rs-231f2cb2205988cf87062bc9f595307af1ed827f.zip |
feat: Add missing blog post
Add the missing blog post from my hugo blog. Also add a locustfile so I
can do some stress test locally.
Diffstat (limited to 'content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html')
-rw-r--r-- | content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html b/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html new file mode 100644 index 0000000..f47040f --- /dev/null +++ b/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html @@ -0,0 +1,31 @@ +<section> +<p> + Compiling emacs from source and installing on fedora. +</p> +<h3>Installing packages</h3> +<p> + Install the following packages: +<pre><code>sudo dnf install git autoconf make gcc texinfo \ + gnutls-devel giflib-devel ncurses-devel \ + libjpeg-turbo-devel giflib-devel gtk3-devel \ + libXpm-devel libtiff-devel libxml2-devel -y</code></pre> +</p> +<h3>Cloning Repository</h3> +<p> + Clone repository + <a href="http://savannah.gnu.org/projects/emacs/">savannah.gnu.org</a> +<pre><code>git clone -b master git://git.sv.gnu.org/emacs.git</code></pre> +</p> +<h3>Compiling</h3> +<p> + Navigate to the emacs folder <code>cd emacs</code> and execute the following + steps: +<pre><code>./autogen.sh +./configure +make -j$(nproc) +sudo make install +</code></pre> + After verify version with <code>./emacs --version</code>, it + should be equal or higher than <strong>28.0.50</strong>. +</p> +</section> |