Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Jul 2023 04:11:54 GMT
From:      Jessica Clarke <jrtc27@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 5e2bc2f60c8e - main - ObsoleteFiles.inc: Automatically generate OpenSSL 3 obsoleted libcompat dirs
Message-ID:  <202307270411.36R4BsjA097516@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jrtc27:

URL: https://cgit.FreeBSD.org/src/commit/?id=5e2bc2f60c8e512925e2dd74f988590a3073d7fc

commit 5e2bc2f60c8e512925e2dd74f988590a3073d7fc
Author:     Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2023-07-27 04:10:44 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2023-07-27 04:10:44 +0000

    ObsoleteFiles.inc: Automatically generate OpenSSL 3 obsoleted libcompat dirs
    
    Older entries in this file are left alone as hard-coding lib32 as
    they're not worth the churn; downstreams will have already moved past
    them (in particular, CheriBSD, which adds additional libcompats).
    
    Reviewed by:    brooks, jhb, emaste
    Differential Revision:  https://reviews.freebsd.org/D41181
---
 ObsoleteFiles.inc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc
index 3acb677c25e4..295d718932e9 100644
--- a/ObsoleteFiles.inc
+++ b/ObsoleteFiles.inc
@@ -78,7 +78,9 @@ OLD_LIBS+=usr/lib/engines/capi.so
 OLD_LIBS+=usr/lib/engines/padlock.so
 OLD_LIBS+=usr/lib/libssl.so.111
 OLD_DIRS+=usr/lib/engines
-OLD_DIRS+=usr/lib32/engines
+.for libcompat in ${_ALL_libcompats}
+OLD_DIRS+=usr/lib${libcompat}/engines
+.endfor
 OLD_FILES+=usr/share/man/man1/list.1
 OLD_FILES+=usr/share/man/man1/openssl-tsget.1
 OLD_FILES+=usr/share/man/man3/ECDH_get_ex_data.3



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307270411.36R4BsjA097516>