@cryptotaxi247 / netdata-1 / commits / 96b5e8b12

add pcre2 dev to install-requires-packages.sh (#19217)

* add pcre2 dev to install-requires-packages.sh * add rhel --------- Co-authored-by: Costa Tsaousis <costa@netdata.cloud>

Ilya Mashchenko committed Dec 15, 2024 at 22:01 UTC 96b5e8b12f239f21d20114a443bc3bad50b35f4e
1 file changed +8
packaging/installer/install-required-packages.sh
+8
@@ -702,7 +702,15 @@ declare -A pkg_libsystemd_dev=(
702 )
703
704 declare -A pkg_pcre2=(
705 + ['alpine']="pcre2-dev"
706 + ['arch']="pcre2"
707 + ['centos']="pcre2-devel"
708 + ['debian']="libpcre2-dev"
709 + ['freebsd']="pcre2"
710 ['macos']="pcre2"
711 + ['rhel']="pcre2-devel"
712 + ['suse']="pcre2-devel"
713 + ['ubuntu']="libpcre2-dev"
714 ['default']="NOTREQUIRED"
715 )
716