From 09e6385f8bd5f3b1da243956bbd382b9ac93b21e Mon Sep 17 00:00:00 2001 From: Candle <50766841+CandleHater@users.noreply.github.com> Date: Sat, 9 Nov 2019 14:20:19 +0100 Subject: [PATCH 1/2] Added missing dependency libltdl-dev On my machine running Mint I wasn't able to run the install.sh without getting the error ``configure.ac:451: error: possibly undefined macro: LT_SYS_SYMBOL_USCORE``. This was due to a missing dependency (libltdl-dev) which I hereby added to the installation process. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 400f5c1..0c130cc 100755 --- a/install.sh +++ b/install.sh @@ -15,13 +15,13 @@ deps_install () { if [[ ${install_os} == 'debian' ]]; then if is_python3; then - if deb_deps_install "python-virtualenv curl python3-dev python3-pip build-essential automake pkg-config libtool libgmp-dev"; then + if deb_deps_install "python-virtualenv curl python3-dev python3-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev"; then return 0 else return 1 fi else - if deb_deps_install "python-virtualenv curl python-dev python-pip build-essential automake pkg-config libtool libgmp-dev"; then + if deb_deps_install "python-virtualenv curl python-dev python-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev"; then return 0 else return 1 From 84a4ab2e7954e3aa0bd8be5f325387347bc3f812 Mon Sep 17 00:00:00 2001 From: Candle <50766841+CandleHater@users.noreply.github.com> Date: Thu, 14 Nov 2019 11:43:04 +0100 Subject: [PATCH 2/2] libssl-dev added as dependency --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 0c130cc..3b0f86e 100755 --- a/install.sh +++ b/install.sh @@ -15,13 +15,13 @@ deps_install () { if [[ ${install_os} == 'debian' ]]; then if is_python3; then - if deb_deps_install "python-virtualenv curl python3-dev python3-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev"; then + if deb_deps_install "python-virtualenv curl python3-dev python3-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev libssl-dev"; then return 0 else return 1 fi else - if deb_deps_install "python-virtualenv curl python-dev python-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev"; then + if deb_deps_install "python-virtualenv curl python-dev python-pip build-essential automake pkg-config libtool libgmp-dev libltdl-dev libssl-dev"; then return 0 else return 1