summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-09-02 01:34:38 -0400
committerGitHub <noreply@github.com>2020-09-02 15:34:38 +1000
commit1157111f43d77e0774faed368a2d9984db0362d0 (patch)
tree1fc1d18488242359c688a6d4f61565fd5bfae587
parent85db821cfaf84d38023aaeeab2f16028aefac0de (diff)
Removed dependency on libJudy for systems which don't have it. (#9859)
This removes any attempts to install libJudy on systems where we do not know that it is both available and functions correctly.
-rwxr-xr-xpackaging/installer/install-required-packages.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/packaging/installer/install-required-packages.sh b/packaging/installer/install-required-packages.sh
index b3ab066482..63fbd987e7 100755
--- a/packaging/installer/install-required-packages.sh
+++ b/packaging/installer/install-required-packages.sh
@@ -1125,16 +1125,13 @@ declare -A pkg_openssl=(
)
declare -A pkg_judy=(
- ['alpine']="WARNING|" # TODO - need to add code to download and install judy for alpine and clearlinux
- ['clearlinux']="WARNING|"
- ['macos']="WARNING|"
['debian']="libjudy-dev"
['ubuntu']="libjudy-dev"
['suse']="judy-devel"
['gentoo']="dev-libs/judy"
['arch']="judy"
['freebsd']="Judy"
- ['default']="Judy-devel"
+ ['default']="NOTREQUIRED"
)
declare -A pkg_python3=(