commit: final bits

pull/77/head
Alec Muffett 2020-07-23 19:26:37 +00:00
rodzic 5ba627150c
commit fe0c07e656
4 zmienionych plików z 9 dodań i 5 usunięć

Wyświetl plik

@ -3,7 +3,7 @@
# platform-independent lib.sh
cd `dirname $0` || exit 1
opt_dir=`pwd`
. lib.sh || exit 1
. ./lib.sh || exit 1
# FreeBSD users: note: you may want to install libzstd to make
# compression go faster; apparently the way that you do this is to do

Wyświetl plik

@ -3,7 +3,7 @@
# platform-independent lib.sh
cd `dirname $0` || exit 1
opt_dir=`pwd`
. lib.sh || exit 1
. ./lib.sh || exit 1
# platform dependencies
shared_deps="

Wyświetl plik

@ -3,7 +3,7 @@
# platform-independent lib.sh
cd `dirname $0` || exit 1
opt_dir=`pwd`
. lib.sh || exit 1
. ./lib.sh || exit 1
# platform dependencies
shared_deps="

Wyświetl plik

@ -3,18 +3,22 @@
# platform-independent lib.sh
cd `dirname $0` || exit 1
opt_dir=`pwd`
. lib.sh || exit 1
. ./lib.sh || exit 1
# platform dependencies
shared_deps="
build-essential
curl
dirmngr
libevent-dev
libpcre3-dev
libssl-dev
libssl1.1
make
perl
zlib1g-dev
"
sudo aptitude install -y $shared_deps || exit 1
sudo apt install -y $shared_deps || exit 1
# build openresty
SetupOpenRestyVars || exit 1