mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-07 02:00:41 +03:00
be0ebb65c1
* fix debian builds issue described: https://github.com/SoftEtherVPN/SoftEtherVPN/issues/550 * add cmake3 dependency (for ubuntu 14.04) * "compat" belongs to debian/ subfolder that file is not needed in root folder * update debian package version * compare debian/changelog and src/CurrentBuild.txt
34 lines
972 B
Bash
Executable File
34 lines
972 B
Bash
Executable File
#!/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
|
|
|
|
if [ ! -d "tmp" ]; then
|
|
mkdir tmp
|
|
fi
|
|
|
|
if [ ! -z ${CMAKE_INSTALL_PREFIX+x} ]; then
|
|
CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}"
|
|
fi
|
|
|
|
(cd tmp && cmake ${CMAKE_FLAGS} .. || exit 1)
|
|
|
|
|
|
echo ""
|
|
|
|
echo "The Makefile is generated. Run 'make -C tmp' to build SoftEther VPN."
|