Date: Fri, 25 Oct 2024 20:56:42 GMT From: Robert Clausecker <fuz@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: d8cd2d0833e0 - main - depend-cleanup.sh: clean up after hash function removal from libcrypt Message-ID: <202410252056.49PKugTC080307@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/src/commit/?id=d8cd2d0833e0e8d6f41fcf481ea27a21358b21d2 commit d8cd2d0833e0e8d6f41fcf481ea27a21358b21d2 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2024-10-25 20:39:06 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2024-10-25 20:56:04 +0000 depend-cleanup.sh: clean up after hash function removal from libcrypt The hash function removal changed the mangled names of MD[45] and SHA{256,512} hash function identifiers. Clean these files to pick up the symbol change. Reported by: bapt Tested by: brooks Fixes: cb5e41b160838880de7d03100afa02e4edee5a9e --- tools/build/depend-cleanup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh index 3678e3368b39..6e7585f0afe6 100755 --- a/tools/build/depend-cleanup.sh +++ b/tools/build/depend-cleanup.sh @@ -225,3 +225,9 @@ if [ -e "$f" ]; then run rm -f "$p"/*.inc fi fi + +# 20241025 cb5e41b16083 Unbundle hash functions fom lib/libcrypt +clean_dep lib/libcrypt crypt-md5 c +clean_dep lib/libcrypt crypt-nthash c +clean_dep lib/libcrypt crypt-sha256 c +clean_dep lib/libcrypt crypt-sha512 c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410252056.49PKugTC080307>