| 34e7a576 | 22-Oct-2025 |
Jessica Clarke <jrtc27@FreeBSD.org> |
krb5: Include <features.h> on Linux so __GLIBC__ can be checked
__GLIBC__ is not pre-defined by the toolchain, it comes from features.h, so we need to make sure that's included by this point.
Fixes
krb5: Include <features.h> on Linux so __GLIBC__ can be checked
__GLIBC__ is not pre-defined by the toolchain, it comes from features.h, so we need to make sure that's included by this point.
Fixes: 4dd2b869cd07 ("krb5: Fix -Wint-conversion when bootstrapping on GNU/Linux")
show more ...
|
| 10eecc46 | 10-Aug-2025 |
Lexi Winter <ivy@FreeBSD.org> |
krb5: Don't install gssapi.h twice
Currently we install /usr/include/gssapi/gssapi.h twice, once in krb5/include/gssapi and once in krb5/lib/gssapi.
The version in krb5/include/gssapi is wrong: mak
krb5: Don't install gssapi.h twice
Currently we install /usr/include/gssapi/gssapi.h twice, once in krb5/include/gssapi and once in krb5/lib/gssapi.
The version in krb5/include/gssapi is wrong: make searches ${.PATH} and picks crypto/krb5/src/include/gssapi.h to install, but this is the file which is supposed to be installed in /usr/include/gssapi.h.
The problem was masked by the fact that we install the correct gssapi/gssapi.h later in krb5/lib/gssapi.
Remove gssapi.h and the unneeded ${.PATH} entry from krb/include/gssapi and while here, remove the unused GSSAPI_KRB5 include group.
This change does not affect the ultimate result of installworld, it just avoids installing the same file twice with different content.
PR: 288594 Reviewed by: brooks, des Differential Revision: https://reviews.freebsd.org/D51840
show more ...
|
| e26259f4 | 31-Jul-2025 |
Cy Schubert <cy@FreeBSD.org> |
gssapi,krb5: Replace libgssapi with the MIT version
lib/libgssapi is based on Heimdal. As on Linux systems, the MIT libgssapi_krb5 replaces it. With both gssapi libraries and header files installed
gssapi,krb5: Replace libgssapi with the MIT version
lib/libgssapi is based on Heimdal. As on Linux systems, the MIT libgssapi_krb5 replaces it. With both gssapi libraries and header files installed results in broken buildworld (gssd) and ports that will not build without modifications to support the MIT gssapi in an alternate location.
73ed0c7992fd removed the MIT GSSAPI headers from /usr/include. Apps using MIT KRB5 gssapi functions and structures will fail to build without this patch.
This patch includes a temporary patch to usr.sbin/gssd to allow it to build with this patch. rmacklem@ has a patch for this and for kgssapi that uses this patch to resolve kgssapi issues for NFS with Kerberos.
This patch is an updated version of D51661 to allow it to build following additional patchs to the tree.
This should have been implmented with 7e35117eb07f.
Fixes: 7e35117eb07f, 73ed0c7992fd Differential Revision: https://reviews.freebsd.org/D51661
show more ...
|
| 40a5abfc | 04-Aug-2025 |
Brooks Davis <brooks@FreeBSD.org> |
krb5/include/Makefile: don't override *include targets
This was causing kdb.h, krad.h, and krb5.h to be installed twice.
PR: 288594 Pull Request: https://github.com/freebsd/freebsd-src/pull/1801 |
| cbb6e747 | 24-Jun-2025 |
Cy Schubert <cy@FreeBSD.org> |
krb5/include: com_err.h and verto.h installed by krb5/util
krb5/util/et and krb5/util/verto install com_err.h and verto.h respectively. Do not install them again. This causes pkgbase conflicts.
Rep
krb5/include: com_err.h and verto.h installed by krb5/util
krb5/util/et and krb5/util/verto install com_err.h and verto.h respectively. Do not install them again. This causes pkgbase conflicts.
Reported by: fluffy Fixes: ee3960cba106
show more ...
|