<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/libexec/telnetd, branch releng/6.1</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F6.1</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F6.1'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2005-06-10T06:12:53Z</updated>
<entry>
<title>Remove kludges intended to support src trees with partial obj trees.</title>
<updated>2005-06-10T06:12:53Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2005-06-10T06:12:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ee66677a7a4c93fa63e21b0e7f1ea2e081060abb'/>
<id>urn:sha1:ee66677a7a4c93fa63e21b0e7f1ea2e081060abb</id>
<content type='text'>
Discussed with:	ru
</content>
</entry>
<entry>
<title>NOCRYPT -&gt; NO_CRYPT</title>
<updated>2004-12-21T10:16:04Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2004-12-21T10:16:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a216173556ede5d21d5157db945767a08201aae1'/>
<id>urn:sha1:a216173556ede5d21d5157db945767a08201aae1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Join the 21st century: Cryptography is no longer an optional component</title>
<updated>2004-08-06T07:27:08Z</updated>
<author>
<name>Colin Percival</name>
<email>cperciva@FreeBSD.org</email>
</author>
<published>2004-08-06T07:27:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d37df47d3104331743c4d05ebba3f996f5a2308a'/>
<id>urn:sha1:d37df47d3104331743c4d05ebba3f996f5a2308a</id>
<content type='text'>
of releases.  The -DNOCRYPT build option still exists for anyone who
really wants to build non-cryptographic binaries, but the "crypto"
release distribution is now part of "base", and anyone installing from a
release will get cryptographic binaries.

Approved by:	re (scottl), markm
Discussed on:	freebsd-current, in late April 2004
</content>
</entry>
<entry>
<title>Make sure that a "make release" (more accurately the bit that makes</title>
<updated>2003-07-24T17:19:15Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2003-07-24T17:19:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=482d5f1f6a9514ac70488333930d16e5a62e84f0'/>
<id>urn:sha1:482d5f1f6a9514ac70488333930d16e5a62e84f0</id>
<content type='text'>
the crunched binary) get a non-cryptographic telnet. This is overkill
in that it covers stuff that is not normally used in a crunched binary.
</content>
</entry>
<entry>
<title>Ensure that for the cryptographic instances of *telnet*, the "crypto"</title>
<updated>2003-07-24T07:19:55Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2003-07-24T07:19:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3665b7c29bcb0304c75134a4cfe2aefe383a4b43'/>
<id>urn:sha1:3665b7c29bcb0304c75134a4cfe2aefe383a4b43</id>
<content type='text'>
distribution is used. This only affects release-building.
</content>
</entry>
<entry>
<title>Test correct macro for "without crypto" option(s).</title>
<updated>2003-07-20T23:29:46Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2003-07-20T23:29:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=acce0bcdb3ef4714bbf9cd573c2e4b23836e6bff'/>
<id>urn:sha1:acce0bcdb3ef4714bbf9cd573c2e4b23836e6bff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Very big makeover in the way telnet, telnetd and libtelnet are built.</title>
<updated>2003-07-16T20:59:15Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2003-07-16T20:59:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4afa3718327563c785b2961410b6ea85d6ddf3ca'/>
<id>urn:sha1:4afa3718327563c785b2961410b6ea85d6ddf3ca</id>
<content type='text'>
Previously, there were two copies of telnet; a non-crypto version
that lived in the usual places, and a crypto version that lived in
crypto/telnet/. The latter was built in a broken manner somewhat akin
to other "contribified" sources. This meant that there were 4 telnets
competing with each other at build time - KerberosIV, Kerberos5,
plain-old-secure and base. KerberosIV is no longer in the running, but
the other three took it in turns to jump all over each other during a
"make buildworld".

As the crypto issue has been clarified, and crypto _calls_ are not
a problem, crypto/telnet has been repo-copied to contrib/telnet,
and with this commit, all telnets are now "contribified". The contrib
path was chosen to not destroy history in the repository, and differs
from other contrib/ entries in that it may be worked on as "normal"
BSD code. There is no dangerous crypto in these sources, only a
very weak system less strong than enigma(1).

Kerberos5 telnet and Secure telnet are now selected by using the usual
macros in /etc/make.conf, and the build process is unsurprising and
less treacherous.
</content>
</entry>
<entry>
<title>Mrege from crypto telnet with "make unifdef". This gets a bunch of</title>
<updated>2003-05-11T18:27:49Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2003-05-11T18:27:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=0813637235d5007c00e1c31ce104af98ced23e32'/>
<id>urn:sha1:0813637235d5007c00e1c31ce104af98ced23e32</id>
<content type='text'>
$FreeBSD$ tags and some debug variable safety belts.
</content>
</entry>
<entry>
<title>Replace various spelling with FALLTHROUGH which is lint()able</title>
<updated>2002-08-25T13:10:45Z</updated>
<author>
<name>Philippe Charnier</name>
<email>charnier@FreeBSD.org</email>
</author>
<published>2002-08-25T13:10:45Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7fed38d0a00297914313d5b57f3fae8ef7d4e627'/>
<id>urn:sha1:7fed38d0a00297914313d5b57f3fae8ef7d4e627</id>
<content type='text'>
</content>
</entry>
<entry>
<title>The .Nm utility</title>
<updated>2002-07-06T19:19:48Z</updated>
<author>
<name>Philippe Charnier</name>
<email>charnier@FreeBSD.org</email>
</author>
<published>2002-07-06T19:19:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3f162cb85dafb6f4c8537b3e606c2ccdaa12a424'/>
<id>urn:sha1:3f162cb85dafb6f4c8537b3e606c2ccdaa12a424</id>
<content type='text'>
</content>
</entry>
</feed>
