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:
authorAntenore Gatta <antenore@simbiosi.org>2020-04-14 14:25:44 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-04-14 14:25:44 +0300
commitcbd1bac2ddf3ac0af27958c03e38290bb6e16e4c (patch)
treeab8add258850bf4ffcffe9eb2035751565d75576
parent89dc216069cabe4804e1fee1fd1689e37037904e (diff)
Setting default build options to use FreeRDP 2
-rw-r--r--Compilation/Compilation-guide-for-RHEL.md4
-rw-r--r--Compilation/Compile-on-Arch-Linux.md4
-rw-r--r--Compilation/Compile-on-Debian-10-Buster.md2
-rw-r--r--Compilation/Compile-on-Debian-9-Stretch.md2
-rw-r--r--Compilation/Compile-on-FreeBSD.md2
-rw-r--r--Compilation/Compile-on-Ubuntu-14.04.md2
-rw-r--r--Compilation/Compile-on-Ubuntu-16.04.md2
-rw-r--r--Compilation/Compile-on-Ubuntu-18.04.md2
-rw-r--r--Compilation/Compile-on-Ubuntu-20.04.md2
9 files changed, 11 insertions, 11 deletions
diff --git a/Compilation/Compilation-guide-for-RHEL.md b/Compilation/Compilation-guide-for-RHEL.md
index f94a674..ae53ddc 100644
--- a/Compilation/Compilation-guide-for-RHEL.md
+++ b/Compilation/Compilation-guide-for-RHEL.md
@@ -99,7 +99,7 @@ fi
**5.** Clone FreeRDP and Remmina repos. You may want to modify the `${HOME}/{freerdp,remmina}` paths and the folder names.
```bash
-git clone https://github.com/FreeRDP/FreeRDP.git ${HOME}/freerdp
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git ${HOME}/freerdp
git clone https://gitlab.com/Remmina/Remmina.git ${HOME}/remmina
```
@@ -222,4 +222,4 @@ atk-devel avahi-ui-devel avahi-ui-gtk3 cmake3 gnutls-devel gtk3-devel harfbuzz-d
libgcrypt-devel libopenh264-devel libsecret-devel libSM-devel libsodium libsodium-devel \
libsoup-devel libssh-devel libvncserver-devel libx264-devel libXtst-devel openh264 \
openjpeg2-devel pango-devel vte291 vte291-devel webkitgtk4-devel xmlto
-``` \ No newline at end of file
+```
diff --git a/Compilation/Compile-on-Arch-Linux.md b/Compilation/Compile-on-Arch-Linux.md
index 40ceae8..3c1e5e6 100644
--- a/Compilation/Compile-on-Arch-Linux.md
+++ b/Compilation/Compile-on-Arch-Linux.md
@@ -16,7 +16,7 @@ and reboot if needed.
Install packages needed to compile FreeRDP and Remmina:
```shell
-pacman -S base-devel git libssh libvncserver gnome-keyring libgnome-keyring libpulse \
+pacman -S base-devel git libssh libvncserver gnome-keyring libgnome-keyring libpulse \
vte3 cmake libappindicator-gtk3 docbook-utils docbook-xsl spice-gtk spice-protocol
```
**2.** Remove installed versions of remmina and freerdp
@@ -33,7 +33,7 @@ cd ~/remmina_devel
**4.** Download the latest source code of FreeRDP from its master branch
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
diff --git a/Compilation/Compile-on-Debian-10-Buster.md b/Compilation/Compile-on-Debian-10-Buster.md
index fd2e373..01ad1d0 100644
--- a/Compilation/Compile-on-Debian-10-Buster.md
+++ b/Compilation/Compile-on-Debian-10-Buster.md
@@ -33,7 +33,7 @@ cd ~/remmina_devel
```
**4.** Download the latest source code of FreeRDP from its master branch
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
diff --git a/Compilation/Compile-on-Debian-9-Stretch.md b/Compilation/Compile-on-Debian-9-Stretch.md
index 2fabadb..f20771e 100644
--- a/Compilation/Compile-on-Debian-9-Stretch.md
+++ b/Compilation/Compile-on-Debian-9-Stretch.md
@@ -40,7 +40,7 @@ cd ~/remmina_devel
```
**4.** Download the latest source code of FreeRDP from its master branch
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
diff --git a/Compilation/Compile-on-FreeBSD.md b/Compilation/Compile-on-FreeBSD.md
index b65d7ef..0a84c70 100644
--- a/Compilation/Compile-on-FreeBSD.md
+++ b/Compilation/Compile-on-FreeBSD.md
@@ -19,7 +19,7 @@ cd ~/remmina_devel
```
**2.** Get the source code
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**3.** Configure FreeRDP
diff --git a/Compilation/Compile-on-Ubuntu-14.04.md b/Compilation/Compile-on-Ubuntu-14.04.md
index e16ea93..8cd9671 100644
--- a/Compilation/Compile-on-Ubuntu-14.04.md
+++ b/Compilation/Compile-on-Ubuntu-14.04.md
@@ -54,7 +54,7 @@ cd ~/remmina_devel
```
**4.** Download the latest source code of FreeRDP from its master branch
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
diff --git a/Compilation/Compile-on-Ubuntu-16.04.md b/Compilation/Compile-on-Ubuntu-16.04.md
index 32ac9d5..f7d72d6 100644
--- a/Compilation/Compile-on-Ubuntu-16.04.md
+++ b/Compilation/Compile-on-Ubuntu-16.04.md
@@ -47,7 +47,7 @@ cd ~/remmina_devel
```
**4.** Download the latest source code of FreeRDP from its master branch
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
diff --git a/Compilation/Compile-on-Ubuntu-18.04.md b/Compilation/Compile-on-Ubuntu-18.04.md
index b50ee5e..f521412 100644
--- a/Compilation/Compile-on-Ubuntu-18.04.md
+++ b/Compilation/Compile-on-Ubuntu-18.04.md
@@ -33,7 +33,7 @@ cd ~/remmina_devel
```
**4.** Download the latest source code of FreeRDP from its master branch
```
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```
**5.** Configure FreeRDP for compilation (don't forget to include -DWITH_PULSE=ON)
diff --git a/Compilation/Compile-on-Ubuntu-20.04.md b/Compilation/Compile-on-Ubuntu-20.04.md
index cf6857d..8211af8 100644
--- a/Compilation/Compile-on-Ubuntu-20.04.md
+++ b/Compilation/Compile-on-Ubuntu-20.04.md
@@ -39,7 +39,7 @@ cd ~/remmina_devel
**4.** Download the latest source code of FreeRDP from its master branch
```shell
-git clone https://github.com/FreeRDP/FreeRDP.git
+git clone --branch 2.0.0 https://github.com/FreeRDP/FreeRDP.git
cd FreeRDP
```