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:
authorRenaud Allard <renaud@allard.it>2014-02-05 14:28:28 +0400
committerRenaud Allard <renaud@allard.it>2014-02-05 14:28:28 +0400
commit02ddb082360fe7f132316bfee14963dbc4210fd8 (patch)
treee30094cc7dc66ee95a9c5cc09dffc962c2a4d637 /configure
parent001fd910fedfd0ef1690a9d3c50c1a28d1680d1d (diff)
Enable compilation on OpenBSD
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure b/configure
index 588da8a2..9dba653c 100755
--- a/configure
+++ b/configure
@@ -21,8 +21,9 @@ 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 - 4) ? : '
+echo -n 'Which is your operating system (1 - 5) ? : '
read TMP
echo
OS=""
@@ -42,6 +43,10 @@ if test "$TMP" = "4"
then
OS="macos"
fi
+if test "$TMP" = "5"
+then
+ OS="openbsd"
+fi
if test "$OS" = ""
then