@cryptotaxi247 / netdata-1 / commits / 1157111f4

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.

Austin S. Hemmelgarn committed Sep 2, 2020 at 01:34 UTC 1157111f43d77e0774faed368a2d9984db0362d0
1 file changed +1 -4
packaging/installer/install-required-packages.sh
+1 -4
@@ -1125,16 +1125,13 @@ declare -A pkg_openssl=(
1125 )
1126
1127 declare -A pkg_judy=(
1128 - ['alpine']="WARNING|" # TODO - need to add code to download and install judy for alpine and clearlinux
1129 - ['clearlinux']="WARNING|"
1130 - ['macos']="WARNING|"
1128 ['debian']="libjudy-dev"
1129 ['ubuntu']="libjudy-dev"
1130 ['suse']="judy-devel"
1131 ['gentoo']="dev-libs/judy"
1132 ['arch']="judy"
1133 ['freebsd']="Judy"
1137 - ['default']="Judy-devel"
1134 + ['default']="NOTREQUIRED"
1135 )
1136
1137 declare -A pkg_python3=(