aboutsummaryrefslogtreecommitdiff
path: root/krb5/plugins
Commit message (Collapse)AuthorAgeFilesLines
* krb5: Fix typo "SPDX-License-Idendifier"Lexi Winter2025-08-1720-20/+20
| | | | sed -e s/SPDX-License-Idendifier/SPDX-License-Identifier/
* krb5: Bump DSO version for version map creationCy Schubert2025-07-271-1/+1
| | | | Differential Revision: https://reviews.freebsd.org/D51520
* krb5: don't install libdb manual pagesLexi Winter2025-07-251-14/+0
| | | | | | | | | This version of libdb is private to Kerberos and not intended for external use, so avoid installing manual pages that may conflict with another version of libdb. Reviewed by: des, cy Differential Revision: https://reviews.freebsd.org/D51418
* krb5: remove private headersLexi Winter2025-07-251-0/+1
| | | | | | | | | | | | | | I compared the contents of the FreeBSD-kerberos-lib-dev package with the contents of the security/krb5 port. Based on that, remove all the headers which are installed by base krb5 but not by the port. These all appear to be internal headers which are not meant to be publicly visible. This removes some headers with unfortunate conflict-prone names like <internal.h> and <dyn.h>. Reviewed by: des, cy Differential Revision: https://reviews.freebsd.org/D51518
* krb5: Replace version maps with generated version mapsCy Schubert2025-07-247-112/+14
| | | | | Suggested by: jhb Fixes: ae07a5805b19
* krb5: use 'kerberos' as package nameLexi Winter2025-07-249-14/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename krb5 and krb5-lib to kerberos and kerberos-lib to match the existing Heimdal package names. Since it's not possible to build or install both at the same time, and Heimdal will be removed anyway, there's no benefit to using a different package name for MIT Kerberos and doing so will create friction for pkgbase users. Move a few things (e.g., headers) from kerberos to kerberos-lib. Move the KDC to a new package, kerberos-kdc, so the client utilities can be installed without the KDC. As most systems won't have the KDC running, this saves a bit of disk space for jails/containers. Remove a few instances of 'PACKAGE=' in target-specific Makefiles where we can set that in the parent's Makefile.inc instead. Revert 01c587521dd8 ("OCI: Attempt to fix "runtime" container") which is no longer required. The KDC init script is still installed in the 'rc' package for compatibility with the security/krb5 port; we should fix this at some point, possibly after Heimdal is removed. Reviewed by: manu, kevans, des Approved by: des (mentor), kevans (mentor) Differential Revision: https://reviews.freebsd.org/D51420
* krb5: Add version mapsCy Schubert2025-07-2214-0/+149
| | | | | | | | Shared objects must have version maps. These were copied from upstream's *.exports files. Reminded by: kib Fixes: ee3960cba106
* krb5: Remove artifaccts of my initial buildsCy Schubert2025-06-202-9/+0
| | | | | | | | | | | | | | | | | | | | | The files being removed were artifacts of my initial builds using a process to extract files used by the port during its build. It was later discovered they were not needed but they were not removed from the build at the time. tools/build/mk/OptionalObsoleteFiles.inc removes the extraneous files from an installed system. These files are not supposed to be installed. There are three parts of this patch. 1. Don't install them in the first place. 2. Remove the files if they were previously installed. 3. Ensure they are removed when switching back to Heimdal from MIT. Reported by: fluffy Fixes: ee3960cba106
* krb5: Add build plumbingCy Schubert2025-06-1620-0/+478
Add tne necessary Makefiles and header files to facilitate building MIT KRB5 as part of buildworld. Nothing will build until the WITH_MITKRB5/MK_MITKRB5 option has been plumbed in Makefile.inc1. Before any changes to Makefile.inc1 are made to enable MIT KRB5, additional commits to other affected software will need to be committed. krb5/Makefile was inspired by kerberos5/Makefile. The Makefiles in krb5/util and krb5/lib were inspired by those in lib/libc and in lib/ncurses. Differential revision: https://reviews.freebsd.org/D50695 Sponsored by: The FreeBSD Foundation