<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/krb5, branch main</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=main</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2026-05-01T14:40:19Z</updated>
<entry>
<title>krb5: Adjust additional version strings</title>
<updated>2026-05-01T14:40:19Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2026-05-01T14:40:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c64ee36e5d09ecee4ce4951047014c8461734fb5'/>
<id>urn:sha1:c64ee36e5d09ecee4ce4951047014c8461734fb5</id>
<content type='text'>
Fixes:		736e411a737b
</content>
</entry>
<entry>
<title>krb5: Adjust version to 1.22.2</title>
<updated>2026-05-01T00:57:39Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2026-05-01T00:57:39Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8f46ba065143d9d89968a20b23844287d54c04a2'/>
<id>urn:sha1:8f46ba065143d9d89968a20b23844287d54c04a2</id>
<content type='text'>
Fixes:		736e411a737b
</content>
</entry>
<entry>
<title>krb5: append to LDFLAGS instead of replacing</title>
<updated>2026-03-20T17:19:35Z</updated>
<author>
<name>Chuck Silvers</name>
<email>chs@FreeBSD.org</email>
</author>
<published>2026-03-20T17:19:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=632ddb864ee89c275ff5f8f9079522dec33c0d3c'/>
<id>urn:sha1:632ddb864ee89c275ff5f8f9079522dec33c0d3c</id>
<content type='text'>
Sponsored by:	Netflix
Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D55335
</content>
</entry>
<entry>
<title>krb5: Make the build a bit quieter</title>
<updated>2026-02-17T14:46:52Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2026-02-17T14:45:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4c247f120492d999ac90efcfc73e5fea29206d1f'/>
<id>urn:sha1:4c247f120492d999ac90efcfc73e5fea29206d1f</id>
<content type='text'>
compile_et.sh is run during buildworld and prints a bunch of debug
output.  It's intrusive and probably not needed, at least by default, so
let's make the build output a bit cleaner.  This is an upstream script,
but it hasn't been modified in 15 years so the local modification is
unlikely to cause any pain.

Also remove a print that shows up in buildworld -s output.

Reviewed by:	cy
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D55317
</content>
</entry>
<entry>
<title>krb5: Fix another GCC build issue</title>
<updated>2026-01-20T17:40:52Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2026-01-20T17:33:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2d8ec3bab2d8af9d0f3322c4d752ff928620491c'/>
<id>urn:sha1:2d8ec3bab2d8af9d0f3322c4d752ff928620491c</id>
<content type='text'>
Fixes:		1876de606eb8
X-MFC with:	1876de606eb8
MFC after:	2 weeks
</content>
</entry>
<entry>
<title>krb5: Fix gcc14 build</title>
<updated>2026-01-20T15:35:00Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2026-01-20T15:35:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6637e8f616f0e94c7801698dd11bee5ebcf3799a'/>
<id>urn:sha1:6637e8f616f0e94c7801698dd11bee5ebcf3799a</id>
<content type='text'>
Fixes:		1876de606eb8
X-MFC with:	1876de606eb8
MFC After:	2 weeks
</content>
</entry>
<entry>
<title>krb5: Expose missing symbols</title>
<updated>2026-01-20T13:41:02Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2025-12-18T00:50:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1876de606eb876b7a97beccfe6fcc89e60a72a25'/>
<id>urn:sha1:1876de606eb876b7a97beccfe6fcc89e60a72a25</id>
<content type='text'>
Add symbols found in the port but not in base. This requires replacing
a shared libkrb5profile.so with libkrb5profile.a (with -fPIC so it can
be used by shared libraries). We do this by making libkrb5profile
INTERNALLIB.

Base currently has libkrb5profile in a shared library. The patch moves
those functions to the various "consumer" libraries as the port does.

Symbols that should be in the other libraries are in libkrb5profile.so.
This is causing some ports issues.

PR:		291695
Reported by:	michaelo, markj,  Chris Inacio &lt;inacio@andrew.cmu.edu&gt;
Tested by:	michaelo
Fixes:		ae07a5805b19
Reviewed by:	michaelo (previous version)
MFC after:	2 weeks
Differential revision:	https://reviews.freebsd.org/D54323
</content>
</entry>
<entry>
<title>krb5: Remove extraneous exports file</title>
<updated>2025-12-18T18:16:39Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2025-12-18T18:15:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f74173b5da3df22ec49c3bf6e8d10bcffdd1f4d3'/>
<id>urn:sha1:f74173b5da3df22ec49c3bf6e8d10bcffdd1f4d3</id>
<content type='text'>
We use version.map in the FreeBSD MIT KRB5 build. The exports file is
a lefteover from when the version map file was created.

MFC after:	1 week
</content>
</entry>
<entry>
<title>krb5: Add missing symbol</title>
<updated>2025-12-11T14:02:37Z</updated>
<author>
<name>Cy Schubert</name>
<email>cy@FreeBSD.org</email>
</author>
<published>2025-12-11T14:00:45Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f825427c0ae975025e831542782d4078b063a82e'/>
<id>urn:sha1:f825427c0ae975025e831542782d4078b063a82e</id>
<content type='text'>
Submitted by:	lampa@fit.vutbr.cz
PR:		291565
MFC after:	1 day
</content>
</entry>
<entry>
<title>krb5: Use sh to run mk_cmds</title>
<updated>2025-11-24T14:28:42Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2025-11-21T17:54:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=673924122470463dfb9089e12b1b4496783a77b8'/>
<id>urn:sha1:673924122470463dfb9089e12b1b4496783a77b8</id>
<content type='text'>
Otherwise etcupdate apparently can fail if its private object directory
under /var/db is in a filesystem mounted noexec.  We shouldn't be
building this target at all, but for now, just apply this workaround.

PR:		291043
Reviewed by:	ivy, cy, des
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D53861
</content>
</entry>
</feed>
