diff options
Diffstat (limited to 'apps/installer')
-rw-r--r-- | apps/installer/includes/os_configs/debian.sh | 2 | ||||
-rw-r--r-- | apps/installer/includes/os_configs/osx.sh | 2 | ||||
-rw-r--r-- | apps/installer/includes/os_configs/ubuntu.sh | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/apps/installer/includes/os_configs/debian.sh b/apps/installer/includes/os_configs/debian.sh index 531c0092a7..66353ecaeb 100644 --- a/apps/installer/includes/os_configs/debian.sh +++ b/apps/installer/includes/os_configs/debian.sh @@ -6,7 +6,7 @@ DEBIAN_VERSION=$(lsb_release -sr) sudo apt-get update -y -sudo apt-get install -y gdbserver gdb unzip curl libace-6.* libace-dev \ +sudo apt-get install -y gdbserver gdb unzip curl \ libncurses-dev libreadline-dev clang g++ \ gcc git cmake make ccache diff --git a/apps/installer/includes/os_configs/osx.sh b/apps/installer/includes/os_configs/osx.sh index 1eca16b3bb..01a99c4a48 100644 --- a/apps/installer/includes/os_configs/osx.sh +++ b/apps/installer/includes/os_configs/osx.sh @@ -13,4 +13,4 @@ if ! command -v cmake &>/dev/null ; then fi ########################################## -brew install openssl readline ace boost bash-completion curl unzip mysql ccache +brew install openssl readline boost bash-completion curl unzip mysql ccache diff --git a/apps/installer/includes/os_configs/ubuntu.sh b/apps/installer/includes/os_configs/ubuntu.sh index 33babf54e0..95442152df 100644 --- a/apps/installer/includes/os_configs/ubuntu.sh +++ b/apps/installer/includes/os_configs/ubuntu.sh @@ -7,7 +7,7 @@ UBUNTU_VERSION=$(lsb_release -sr); sudo apt update # shared deps -sudo apt-get -y install ccache clang cmake curl google-perftools libace-dev libmysqlclient-dev make unzip +sudo apt-get -y install ccache clang cmake curl google-perftools libmysqlclient-dev make unzip if [[ $CONTINUOUS_INTEGRATION || $DOCKER ]]; then sudo add-apt-repository -y ppa:mhier/libboost-latest && sudo apt update && sudo apt-get -y install build-essential cmake-data \ @@ -17,13 +17,13 @@ else case $UBUNTU_VERSION in "20.04") sudo apt-get install -y g++ gdb gdbserver gcc git \ - libace-6.* libboost-all-dev libbz2-dev libncurses-dev libreadline-dev \ - libssl-dev mysql-server + libboost-all-dev libbz2-dev libncurses-dev libreadline-dev \ + libssl-dev mysql-server ;; *) sudo add-apt-repository -y ppa:mhier/libboost-latest && sudo apt update && sudo apt-get install -y g++ gdb gdbserver gcc git \ - libace-6.* libboost-all-dev libbz2-dev libncurses-dev libreadline-dev \ - libssl-dev mysql-server + libboost-all-dev libbz2-dev libncurses-dev libreadline-dev \ + libssl-dev mysql-server ;; esac fi |