浏览代码

Updated build instructions and package versions

Quintin 8 年之前
父节点
当前提交
d2f9d03297
共有 4 个文件被更改,包括 19 次插入10 次删除
  1. 3 4
      README.md
  2. 3 0
      centos/SPECS/softethervpn.spec
  3. 3 3
      debian/changelog
  4. 10 3
      src/BUILD_UNIX.md

+ 3 - 4
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
 

+ 3 - 0
centos/SPECS/softethervpn.spec

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

+ 3 - 3
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 <[email protected]>  Tue, 4 Feb 2014 20:24:43 +0000
+ -- Quintin Beukes <[email protected]>  Thu, 14 Dec 2017 13:41:00 +0000

+ 10 - 3
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 
 ```