From 231f2cb2205988cf87062bc9f595307af1ed827f Mon Sep 17 00:00:00 2001
From: "Gabriel A. Giovanini"
Date: Sun, 15 May 2022 15:34:36 +0200
Subject: 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.
---
...Compiling_emacs_from_source_code_on_fedora.html | 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html
(limited to 'content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html')
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 @@
+
+
+ Compiling emacs from source and installing on fedora.
+
+Installing packages
+
+ Install the following packages:
+
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
+
+Cloning Repository
+
+ Clone repository
+ savannah.gnu.org
+
git clone -b master git://git.sv.gnu.org/emacs.git
+
+Compiling
+
+ Navigate to the emacs folder cd emacs
and execute the following
+ steps:
+
./autogen.sh
+./configure
+make -j$(nproc)
+sudo make install
+
+ After verify version with ./emacs --version
, it
+ should be equal or higher than 28.0.50.
+
+
--
cgit v1.2.3