summaryrefslogtreecommitdiff
path: root/.depend
Commit message (Collapse)AuthorAgeFilesLines
* Revert one dependency per line change.Darren Tucker2019-07-191-5888/+166
| | | | | | It turns out that having such a large number of lines in the .depend file will cause the memory usage of awk during AC_SUBST to blow up on at least NetBSD's awk, causing configure to fail.
* Force dependencies one per line.Darren Tucker2019-07-191-166/+5888
| | | | | Force makedepend to output one dependency per line, which will make reading diffs against it much easier. ok djm@
* make depend.Darren Tucker2019-07-191-39/+39
|
* dependDamien Miller2019-07-161-2/+2
|
* remove realpath() compat replacementDamien Miller2019-07-081-2/+2
| | | | | | | | | | | | We shipped a BSD implementation of realpath() because sftp-server depended on its behaviour. OpenBSD is now moving to a more strictly POSIX-compliant realpath(2), so sftp-server now unconditionally requires its own BSD-style realpath implementation. As such, there is no need to carry another independant implementation in openbsd-compat. ok dtucker@
* upstream: Remove crc32.{c,h} which were only used by the now-gonedtucker@openbsd.org2019-05-081-3/+2
| | | | | | SSH1 protocol. Patch from yumkam at gmail.com, ok deraadt. OpenBSD-Commit-ID: cceda5876c5ba6b4d8abcd52335329198cee3240
* makedependV_8_0_P1Damien Miller2019-04-181-1/+1
|
* upstream: openssh-7.9 accidentally reused the server's algorithm listsdjm@openbsd.org2019-02-241-1/+1
| | | | | | | | | | | | | | in the client for KEX, ciphers and MACs. The ciphers and MACs were identical between the client and server, but the error accidentially disabled the diffie-hellman-group-exchange-sha1 KEX method. This fixes the client code to use the correct method list, but because nobody complained, it also disables the diffie-hellman-group-exchange-sha1 KEX method. Reported by nuxi AT vault24.org via bz#2697; ok dtucker OpenBSD-Commit-ID: e30c33a23c10fd536fefa120e86af1842e33fd57
* dependDamien Miller2019-01-231-2/+2
|
* dependDamien Miller2019-01-211-31/+28
|
* dependDamien Miller2019-01-201-50/+49
|
* upstream: move client/server SSH-* banners to buffers underdjm@openbsd.org2018-12-271-3/+3
| | | | | | | | | | | | | ssh->kex and factor out the banner exchange. This eliminates some common code from the client and server. Also be more strict about handling \r characters - these should only be accepted immediately before \n (pointed out by Jann Horn). Inspired by a patch from Markus Schmidt. (lots of) feedback and ok markus@ OpenBSD-Commit-ID: 1cc7885487a6754f63641d7d3279b0941890275b
* regen dependDamien Miller2018-10-231-1/+1
|
* update dependsDamien Miller2018-10-111-3/+3
|
* rebuild dependenciesDamien Miller2018-08-231-2/+2
|
* upstream: Remove support for running ssh(1) setuid and fatal ifdtucker@openbsd.org2018-07-191-6/+6
| | | | | | | | attempted. Do not link uidwap.c into ssh any more. Neuters UsePrivilegedPort, which will be marked as deprecated shortly. ok markus@ djm@ OpenBSD-Commit-ID: c4ba5bf9c096f57a6ed15b713a1d7e9e2e373c42
* upstream: remove legacy key emulation layer; ok djm@markus@openbsd.org2018-07-121-33/+32
| | | | OpenBSD-Commit-ID: 2b1f9619259e222bbd4fe9a8d3a0973eafb9dd8d
* Adapt portable to legacy buffer API removalDamien Miller2018-07-101-175/+169
|
* dependDamien Miller2018-07-031-2/+2
|
* upstream: switch over to the new authorized_keys options API anddjm@openbsd.org2018-03-031-4/+3
| | | | | | | | | | | remove the legacy one. Includes a fairly big refactor of auth2-pubkey.c to retain less state between key file lines. feedback and ok markus@ OpenBSD-Commit-ID: dece6cae0f47751b9892080eb13d6625599573df
* upstream: refactor sshkey_read() to make it a little more, err,djm@openbsd.org2018-03-021-8/+8
| | | | | | readable. ok markus OpenBSD-Commit-ID: 2e9247b5762fdac3b6335dc606d3822121714c28
* updatedependDamien Miller2018-02-261-38/+45
|
* Regenerate dependencies after UNICOS removal.Darren Tucker2018-02-151-159/+159
|
* rebuild dependsDamien Miller2018-01-231-3/+3
|
* remove blocks.c from MakefileDamien Miller2017-12-191-39/+38
|
* Update .depend with empty config.hDarren Tucker2017-12-121-38/+31
|
* Add autogenerated dependency info to Makefile.Darren Tucker2017-12-111-0/+184
Adds a .depend file containing dependency information generated by makedepend, which is appended to the generated Makefile by configure. You can regen the file with "make -f Makefile.in depend" if necessary, but we'll be looking at some way to automatically keep this up to date. "no objection" djm@