mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
package/softether: update patch to remove renames
Since https://git.buildroot.net/buildroot/commit/?id=85f11d08c387c200dbb59a8559f2ba62376689bf buildroot refuses to apply patches that contain renames. Fixes http://autobuild.buildroot.net/results/223/2237b9ec78044678aac9e743318ce5dc01309ab7/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
7d06330d37
commit
7afb827d4b
@ -1494,10 +1494,178 @@ index 00000000..4a3fc2ba
|
|||||||
+
|
+
|
||||||
+
|
+
|
||||||
+AC_OUTPUT
|
+AC_OUTPUT
|
||||||
diff --git a/configure b/manual_configure
|
--- a/configure 2016-04-24 16:49:31.000000000 +0200
|
||||||
similarity index 100%
|
+++ b/configure 1970-01-01 01:00:00.000000000 +0100
|
||||||
rename from configure
|
@@ -1,83 +0,0 @@
|
||||||
rename to manual_configure
|
-#!/bin/sh
|
||||||
|
-
|
||||||
|
-echo '---------------------------------------------------------------------'
|
||||||
|
-echo 'SoftEther VPN for Unix'
|
||||||
|
-echo
|
||||||
|
-echo 'Copyright (c) SoftEther VPN Project at University of Tsukuba, Japan.'
|
||||||
|
-echo 'Copyright (c) Daiyuu Nobori. All Rights Reserved.'
|
||||||
|
-echo
|
||||||
|
-echo 'This program is free software; you can redistribute it and/or'
|
||||||
|
-echo 'modify it under the terms of the GNU General Public License'
|
||||||
|
-echo 'version 2 as published by the Free Software Foundation.'
|
||||||
|
-echo
|
||||||
|
-echo 'Read and understand README.TXT, LICENSE.TXT and WARNING.TXT before use.'
|
||||||
|
-echo '---------------------------------------------------------------------'
|
||||||
|
-echo
|
||||||
|
-
|
||||||
|
-echo 'Welcome to the corner-cutting configure script !'
|
||||||
|
-echo
|
||||||
|
-echo 'Select your operating system below:'
|
||||||
|
-echo ' 1: Linux'
|
||||||
|
-echo ' 2: FreeBSD'
|
||||||
|
-echo ' 3: Solaris'
|
||||||
|
-echo ' 4: Mac OS X'
|
||||||
|
-echo ' 5: OpenBSD'
|
||||||
|
-echo
|
||||||
|
-echo -n 'Which is your operating system (1 - 5) ? : '
|
||||||
|
-read TMP
|
||||||
|
-echo
|
||||||
|
-OS=""
|
||||||
|
-if test "$TMP" = "1"
|
||||||
|
-then
|
||||||
|
- OS="linux"
|
||||||
|
-fi
|
||||||
|
-if test "$TMP" = "2"
|
||||||
|
-then
|
||||||
|
- OS="freebsd"
|
||||||
|
-fi
|
||||||
|
-if test "$TMP" = "3"
|
||||||
|
-then
|
||||||
|
- OS="solaris"
|
||||||
|
-fi
|
||||||
|
-if test "$TMP" = "4"
|
||||||
|
-then
|
||||||
|
- OS="macos"
|
||||||
|
-fi
|
||||||
|
-if test "$TMP" = "5"
|
||||||
|
-then
|
||||||
|
- OS="openbsd"
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-if test "$OS" = ""
|
||||||
|
-then
|
||||||
|
- echo "Wrong number."
|
||||||
|
- exit 1
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-echo 'Select your CPU bits below:'
|
||||||
|
-echo ' 1: 32-bit'
|
||||||
|
-echo ' 2: 64-bit'
|
||||||
|
-echo
|
||||||
|
-echo -n 'Which is the type of your CPU (1 - 2) ? : '
|
||||||
|
-read TMP
|
||||||
|
-echo
|
||||||
|
-CPU=""
|
||||||
|
-if test "$TMP" = "1"
|
||||||
|
-then
|
||||||
|
- CPU="32bit"
|
||||||
|
-fi
|
||||||
|
-if test "$TMP" = "2"
|
||||||
|
-then
|
||||||
|
- CPU="64bit"
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-if test "$CPU" = ""
|
||||||
|
-then
|
||||||
|
- echo "Wrong number."
|
||||||
|
- exit 1
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-cp src/makefiles/${OS}_${CPU}.mak Makefile
|
||||||
|
-
|
||||||
|
-echo "The Makefile is generated. Run 'make' to build SoftEther VPN."
|
||||||
|
-
|
||||||
|
--- a/manual_configure 1970-01-01 01:00:00.000000000 +0100
|
||||||
|
+++ b/manual_configure 2016-04-24 16:49:31.000000000 +0200
|
||||||
|
@@ -0,0 +1,83 @@
|
||||||
|
+#!/bin/sh
|
||||||
|
+
|
||||||
|
+echo '---------------------------------------------------------------------'
|
||||||
|
+echo 'SoftEther VPN for Unix'
|
||||||
|
+echo
|
||||||
|
+echo 'Copyright (c) SoftEther VPN Project at University of Tsukuba, Japan.'
|
||||||
|
+echo 'Copyright (c) Daiyuu Nobori. All Rights Reserved.'
|
||||||
|
+echo
|
||||||
|
+echo 'This program is free software; you can redistribute it and/or'
|
||||||
|
+echo 'modify it under the terms of the GNU General Public License'
|
||||||
|
+echo 'version 2 as published by the Free Software Foundation.'
|
||||||
|
+echo
|
||||||
|
+echo 'Read and understand README.TXT, LICENSE.TXT and WARNING.TXT before use.'
|
||||||
|
+echo '---------------------------------------------------------------------'
|
||||||
|
+echo
|
||||||
|
+
|
||||||
|
+echo 'Welcome to the corner-cutting configure script !'
|
||||||
|
+echo
|
||||||
|
+echo 'Select your operating system below:'
|
||||||
|
+echo ' 1: Linux'
|
||||||
|
+echo ' 2: FreeBSD'
|
||||||
|
+echo ' 3: Solaris'
|
||||||
|
+echo ' 4: Mac OS X'
|
||||||
|
+echo ' 5: OpenBSD'
|
||||||
|
+echo
|
||||||
|
+echo -n 'Which is your operating system (1 - 5) ? : '
|
||||||
|
+read TMP
|
||||||
|
+echo
|
||||||
|
+OS=""
|
||||||
|
+if test "$TMP" = "1"
|
||||||
|
+then
|
||||||
|
+ OS="linux"
|
||||||
|
+fi
|
||||||
|
+if test "$TMP" = "2"
|
||||||
|
+then
|
||||||
|
+ OS="freebsd"
|
||||||
|
+fi
|
||||||
|
+if test "$TMP" = "3"
|
||||||
|
+then
|
||||||
|
+ OS="solaris"
|
||||||
|
+fi
|
||||||
|
+if test "$TMP" = "4"
|
||||||
|
+then
|
||||||
|
+ OS="macos"
|
||||||
|
+fi
|
||||||
|
+if test "$TMP" = "5"
|
||||||
|
+then
|
||||||
|
+ OS="openbsd"
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+if test "$OS" = ""
|
||||||
|
+then
|
||||||
|
+ echo "Wrong number."
|
||||||
|
+ exit 1
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+echo 'Select your CPU bits below:'
|
||||||
|
+echo ' 1: 32-bit'
|
||||||
|
+echo ' 2: 64-bit'
|
||||||
|
+echo
|
||||||
|
+echo -n 'Which is the type of your CPU (1 - 2) ? : '
|
||||||
|
+read TMP
|
||||||
|
+echo
|
||||||
|
+CPU=""
|
||||||
|
+if test "$TMP" = "1"
|
||||||
|
+then
|
||||||
|
+ CPU="32bit"
|
||||||
|
+fi
|
||||||
|
+if test "$TMP" = "2"
|
||||||
|
+then
|
||||||
|
+ CPU="64bit"
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+if test "$CPU" = ""
|
||||||
|
+then
|
||||||
|
+ echo "Wrong number."
|
||||||
|
+ exit 1
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+cp src/makefiles/${OS}_${CPU}.mak Makefile
|
||||||
|
+
|
||||||
|
+echo "The Makefile is generated. Run 'make' to build SoftEther VPN."
|
||||||
|
+
|
||||||
diff --git a/src/Cedar/Makefile.am b/src/Cedar/Makefile.am
|
diff --git a/src/Cedar/Makefile.am b/src/Cedar/Makefile.am
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 00000000..5346537d
|
index 00000000..5346537d
|
||||||
|
Loading…
x
Reference in New Issue
Block a user