1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

Updated build instructions and package versions

This commit is contained in:
Quintin 2017-12-09 13:41:14 +02:00 committed by Moataz Elmasry
parent e04ec3b203
commit d2f9d03297
4 changed files with 19 additions and 10 deletions

View File

@ -140,10 +140,10 @@ from GitHub. You may make your own fork project from our project.
### 1. Debian/Ubuntu
- gcc
- libncurses-dev
- libncurses5-dev
- libreadline-dev
- make
- openssl-dev
- libssl-dev
### 2. Redhat/CentOS
- gcc
@ -163,8 +163,7 @@ $ make
$ make install
```
Please see src/BUILD_UNIX.md for more build instructions.
# TO CIRCUMVENT YOUR GOVERNMENT'S FIREWALL RESTRICTION

View File

@ -87,6 +87,9 @@ if [ $1 -eq 0 ]; then
fi
%changelog
* Thu Dec 14 2017 Quintin Beukes <github.com@last.za.net> - 4.23-9647
- Update upstream to 4.23-9647
* Wed Sep 30 2015 Jeff Tang <mrjefftang@gmail.com> - 4.19.9582-1
- Update upstream to 4.19.9582-beta

6
debian/changelog vendored
View File

@ -1,5 +1,5 @@
softether-vpn (0:4.04.9412-rtm) unstable; urgency=low
softether-vpn (0:4.23.9647) unstable; urgency=low
* Testing debianization
* Updated release version
-- Dmitry Orlov <me@mosquito.su> Tue, 4 Feb 2014 20:24:43 +0000
-- Quintin Beukes <github.com@last.za.net> Thu, 14 Dec 2017 13:41:00 +0000

View File

@ -8,7 +8,7 @@ Requirements
You need to install the following software to build SoftEther VPN for UNIX.
- Linux, FreeBSD, Solaris or Mac OS X.
- GNU Compiler Collectipon (gcc) and binary utilities.
- GNU Compiler Collection (gcc) and binary utilities. ***
- GNU Make (gmake).
- GNU C Library (glibc).
- POSIX Threads (pthread).
@ -17,11 +17,18 @@ You need to install the following software to build SoftEther VPN for UNIX.
- readline.
- ncurses.
*** It has been noted that clang is also supported as an alternative to gcc.
For example, the following commands help you to install the above programs
on Fedora or CentOS Linux:
```
$ yum -y groupinstall "Development Tools"
$ yum -y install readline-devel ncurses-devel openssl-devel
$ sudo yum -y groupinstall "Development Tools"
$ sudo yum -y install readline-devel ncurses-devel openssl-devel
```
And this command for Debian/Ubuntu:
```
$ sudo apt -y install gcc libncurses5-dev libreadline-dev libssl-dev make
```