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:
authorTukusej’s Sirs <tukusejssirs@protonmail.com>2020-02-21 21:48:57 +0300
committerTukusej’s Sirs <tukusejssirs@protonmail.com>2020-02-21 21:48:57 +0300
commit724cb48349d4b1acb0219e1d2fc0f6bf8a0d19da (patch)
tree883146cc81471135a5c8a8a8f06dfb63fe9551ab
parent7d1acfcc0637085428c42e846c37441a9d156ff3 (diff)
Update Compilation-guide-for_RHEL.md from Fedora point of view
-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.