Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/remmina-wiki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Compilation/Compilation-guide-for-RHEL.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/Compilation/Compilation-guide-for-RHEL.md b/Compilation/Compilation-guide-for-RHEL.md
index e5abd63..a78db27 100644
--- a/Compilation/Compilation-guide-for-RHEL.md
+++ b/Compilation/Compilation-guide-for-RHEL.md
@@ -61,6 +61,10 @@ if [ "$distro_name" = 'centos' ] && [ "$distro_version" = 8 ]; then
# Disable okay repo for potential package conflicts
sudo dnf config-manager --disable okay
fi
+
+if [ "$distro_name" = 'fedora' ]; then
+ sudo dnf config-manager --enable fedora-cisco-openh264
+fi
```
**3.** Update `yum` cache and packages. This step might require a reboot.
@@ -85,6 +89,12 @@ sudo yum -y install alsa-lib-devel atk-devel avahi-ui-gtk3 cairo-devel cmake3 \
if [ "$distro_name" = 'centos' ] && [ "$distro_version" = 8 ]; then
sudo yum -y install --enablerepo=okay avahi-ui-devel openh264 libopenh264-devel libx264-devel
fi
+
+# On Fedora
+if [ "$distro_name" = 'fedora' ]; then
+ # TODO: Do we really need `libx264`? Or even `openh264` (that for CentOS too)?
+ sudo yum -y install avahi-ui-devel libx264 libx264-devel openh264 openh264-devel
+fi
```
**5.** Clone FreeRDP and Remmina repos. You may want to modify the `${HOME}/{freerdp,remmina}` paths and the folder names.