mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
https://github.com/Netatalk/netatalk/blob/netatalk-4-4-3/NEWS.md The bump from 4.4.2 to 4.4.3 fixes these CVEs: CVE-2026-44047, CVE-2026-44048, CVE-2026-44049, CVE-2026-44050, CVE-2026-44051, CVE-2026-44052, CVE-2026-44054, CVE-2026-44055, CVE-2026-44057, CVE-2026-44060, CVE-2026-44062, CVE-2026-44064, CVE-2026-44066, CVE-2026-44068, CVE-2026-44076, CVE-2026-45354, CVE-2026-45355, CVE-2026-45356, CVE-2026-45698, CVE-2026-45699 Version 3.2.8 fixes these CVEs: CVE-2024-1544, CVE-2024-5288, CVE-2024-5991, CVE-2024-5814 Version 3.2.1 fixes these CVEs: CVE-2024-38439, CVE-2024-38440, CVE-2024-38441 Updated project URL in Config.in help text. Removed md5 tarball hash and added sha256 and sha512 tarball hashes provided by upstream. Updated license hash due to upstream commits:06e427ea02934495d9e1Switched _SITE to https. Version 4.0.0 removed autotools and kept only meson as build system. Reworked dependencies, sorted NETATALK_DEPENDENCIES. Iniparser was added as mandatory dependency in 4.2.0. Added optional dependencies to cracklib and openldap. Disabled usage of libiconv for uClibc due to different definitions of iconv_t (uClibc: typedef long vs. glibc: typedef void) which causes a build error after the switch to meson. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
25 lines
846 B
Plaintext
25 lines
846 B
Plaintext
config BR2_PACKAGE_NETATALK
|
|
bool "netatalk"
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_BERKELEYDB
|
|
select BR2_PACKAGE_INIPARSER
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST if BR2_PACKAGE_LIBOPENSSL
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
|
select BR2_PACKAGE_LIBEVENT
|
|
select BR2_PACKAGE_LIBGCRYPT
|
|
select BR2_PACKAGE_LIBGPG_ERROR
|
|
help
|
|
Netatalk can be used to turn a *NIX machine into an
|
|
extremely high-performance and reliable file server for
|
|
Macintosh computers.
|
|
|
|
https://netatalk.io/
|
|
|
|
comment "netatalk needs a toolchain w/ threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|