Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnobori <da.git@softether.co.jp>2018-05-29 18:50:54 +0300
committerdnobori <da.git@softether.co.jp>2018-05-29 18:50:54 +0300
commitc5d56e666e97719398dc9dc2d81398b744ce9417 (patch)
tree8ac46749f92acbdb0702f71f3cb5066ca3ca0d6e
parentc6d5ebdda197c7b9a06342d078e4872faad6552e (diff)
v4.27-9668-betav4.27-9668-beta
-rw-r--r--src/BuildUtil/UnixBuildSoftwares.cs34
-rw-r--r--src/Cedar/Cedar.h10
-rw-r--r--src/CurrentBuild.txt4
-rw-r--r--src/bin/vpnweb.cabbin195911 -> 195920 bytes
-rw-r--r--src/bin/vpnweb.ocxbin333976 -> 333976 bytes
-rw-r--r--src/vpnweb/vpnweb.h2
-rw-r--r--src/vpnweb/vpnweb_i.c2
-rw-r--r--src/vpnweb/vpnweb_p.c2
8 files changed, 34 insertions, 20 deletions
diff --git a/src/BuildUtil/UnixBuildSoftwares.cs b/src/BuildUtil/UnixBuildSoftwares.cs
index 220740c0..515aba2b 100644
--- a/src/BuildUtil/UnixBuildSoftwares.cs
+++ b/src/BuildUtil/UnixBuildSoftwares.cs
@@ -648,11 +648,33 @@ namespace BuildUtil
sr.WriteLine("\t-ranlib lib/{0}", Path.GetFileName(filename));
}
+ bool try_no_pie = false;
+
+ if (this.Os == OSList.Linux && (this.Cpu == CpuList.x86 || this.Cpu == CpuList.x64 || this.Cpu == CpuList.intel))
+ {
+ try_no_pie = true;
+ }
+
sr.WriteLine("\t-ranlib code/{0}.a", this.Software.ToString());
- sr.WriteLine("\t$(CC) code/{0}.a $(OPTIONS) -o {0}", this.Software.ToString());
+
+ if (try_no_pie == false)
+ {
+ sr.WriteLine("\t$(CC) code/{0}.a $(OPTIONS) -o {0}", this.Software.ToString());
+ }
+ else
+ {
+ sr.WriteLine("\t$(CC) code/{0}.a $(OPTIONS) -o {0} || $(CC) -no-pie code/{0}.a $(OPTIONS) -o {0}", this.Software.ToString());
+ }
sr.WriteLine("\t-ranlib code/{0}.a", "vpncmd");
- sr.WriteLine("\t$(CC) code/{0}.a $(OPTIONS) -o {0}", "vpncmd");
+ if (try_no_pie == false)
+ {
+ sr.WriteLine("\t$(CC) code/{0}.a $(OPTIONS) -o {0}", "vpncmd");
+ }
+ else
+ {
+ sr.WriteLine("\t$(CC) code/{0}.a $(OPTIONS) -o {0} || $(CC) -no-pie code/{0}.a $(OPTIONS) -o {0}", "vpncmd");
+ }
if (this.Software == Software.vpnserver_vpnbridge || this.Software == Software.vpnbridge || this.Software == Software.vpnserver)
{
@@ -958,14 +980,6 @@ namespace BuildUtil
options.Add("-O2");
}
- if (this.Os == OSList.Linux)
- {
- if (this.Cpu == CpuList.x64 || this.Cpu == CpuList.x86 || this.Cpu == CpuList.intel)
- {
- options.Add("-no-pie");
- }
- }
-
options.Add("-fsigned-char");
if (this.NoPThreadOption == false)
{
diff --git a/src/Cedar/Cedar.h b/src/Cedar/Cedar.h
index ce28bef5..0ffa4f8d 100644
--- a/src/Cedar/Cedar.h
+++ b/src/Cedar/Cedar.h
@@ -138,7 +138,7 @@
#define CEDAR_VER 427
// Build Number
-#define CEDAR_BUILD 9667
+#define CEDAR_BUILD 9668
// Beta number
//#define BETA_NUMBER 3
@@ -159,10 +159,10 @@
// Specifies the build date
#define BUILD_DATE_Y 2018
#define BUILD_DATE_M 5
-#define BUILD_DATE_D 26
-#define BUILD_DATE_HO 8
-#define BUILD_DATE_MI 20
-#define BUILD_DATE_SE 23
+#define BUILD_DATE_D 29
+#define BUILD_DATE_HO 21
+#define BUILD_DATE_MI 19
+#define BUILD_DATE_SE 40
// Tolerable time difference
#define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000)
diff --git a/src/CurrentBuild.txt b/src/CurrentBuild.txt
index 8e1223e4..307e6af9 100644
--- a/src/CurrentBuild.txt
+++ b/src/CurrentBuild.txt
@@ -1,4 +1,4 @@
-BUILD_NUMBER 9667
+BUILD_NUMBER 9668
VERSION 427
BUILD_NAME beta
-BUILD_DATE 20180526_082023
+BUILD_DATE 20180529_211940
diff --git a/src/bin/vpnweb.cab b/src/bin/vpnweb.cab
index 66e116b7..c864eb62 100644
--- a/src/bin/vpnweb.cab
+++ b/src/bin/vpnweb.cab
Binary files differ
diff --git a/src/bin/vpnweb.ocx b/src/bin/vpnweb.ocx
index 9e401ce1..d71d692b 100644
--- a/src/bin/vpnweb.ocx
+++ b/src/bin/vpnweb.ocx
Binary files differ
diff --git a/src/vpnweb/vpnweb.h b/src/vpnweb/vpnweb.h
index d2cade60..a08312e4 100644
--- a/src/vpnweb/vpnweb.h
+++ b/src/vpnweb/vpnweb.h
@@ -4,7 +4,7 @@
/* File created by MIDL compiler version 7.00.0500 */
-/* at Sat May 26 08:20:42 2018
+/* at Tue May 29 21:19:59 2018
*/
/* Compiler settings for .\vpnweb.idl:
Oicf, W1, Zp8, env=Win32 (32b run)
diff --git a/src/vpnweb/vpnweb_i.c b/src/vpnweb/vpnweb_i.c
index 5ebbc641..b6925d1e 100644
--- a/src/vpnweb/vpnweb_i.c
+++ b/src/vpnweb/vpnweb_i.c
@@ -6,7 +6,7 @@
/* File created by MIDL compiler version 7.00.0500 */
-/* at Sat May 26 08:20:42 2018
+/* at Tue May 29 21:19:59 2018
*/
/* Compiler settings for .\vpnweb.idl:
Oicf, W1, Zp8, env=Win32 (32b run)
diff --git a/src/vpnweb/vpnweb_p.c b/src/vpnweb/vpnweb_p.c
index ed041536..c18eeb6c 100644
--- a/src/vpnweb/vpnweb_p.c
+++ b/src/vpnweb/vpnweb_p.c
@@ -4,7 +4,7 @@
/* File created by MIDL compiler version 7.00.0500 */
-/* at Sat May 26 08:20:42 2018
+/* at Tue May 29 21:19:59 2018
*/
/* Compiler settings for .\vpnweb.idl:
Oicf, W1, Zp8, env=Win32 (32b run)