From d2f9d03297d3537840e50788fc5c2a483d9b2776 Mon Sep 17 00:00:00 2001 From: Quintin Date: Sat, 9 Dec 2017 13:41:14 +0200 Subject: [PATCH] Updated build instructions and package versions --- README.md | 7 +++---- centos/SPECS/softethervpn.spec | 3 +++ debian/changelog | 6 +++--- src/BUILD_UNIX.md | 13 ++++++++++--- 4 files changed, 19 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6e7166ff..242bd595 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/centos/SPECS/softethervpn.spec b/centos/SPECS/softethervpn.spec index 99df86e4..2367db6b 100644 --- a/centos/SPECS/softethervpn.spec +++ b/centos/SPECS/softethervpn.spec @@ -87,6 +87,9 @@ if [ $1 -eq 0 ]; then fi %changelog +* Thu Dec 14 2017 Quintin Beukes - 4.23-9647 +- Update upstream to 4.23-9647 + * Wed Sep 30 2015 Jeff Tang - 4.19.9582-1 - Update upstream to 4.19.9582-beta diff --git a/debian/changelog b/debian/changelog index fc27eb06..d6428024 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 4 Feb 2014 20:24:43 +0000 + -- Quintin Beukes Thu, 14 Dec 2017 13:41:00 +0000 diff --git a/src/BUILD_UNIX.md b/src/BUILD_UNIX.md index 8d8645a4..fdf26b93 100644 --- a/src/BUILD_UNIX.md +++ b/src/BUILD_UNIX.md @@ -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 ```