1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-06 15:54:57 +03:00

Enable compilation on OpenBSD

This commit is contained in:
Renaud Allard
2014-02-05 11:28:28 +01:00
parent 001fd910fe
commit 02ddb08236
3 changed files with 920 additions and 1 deletions

7
configure vendored
View File

@ -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