X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/262a8f5851c67e1f4603541b2854741b3c5be70e..5771d35370ce5221a3a066153a28e76514d1144d:/.ssh/Makefile diff --git a/.ssh/Makefile b/.ssh/Makefile index 8010373..9336796 100644 --- a/.ssh/Makefile +++ b/.ssh/Makefile @@ -22,10 +22,15 @@ SSH_VERSION = $(shell ssh -V 2>&1) config: config.in cp $< $@ case "$(SSH_VERSION)" in \ + (OpenSSH_4.7*) \ + sed -ri -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \ + $@ \ + ;; \ (OpenSSH_4.3*) \ sed -ri -e 's,^.+\bExitOnForwardFailure\b.+$$,##UNSUPPORTED##&,' \ -e 's,^.+\bMACs\b.+$$,##UNSUPPORTED##&,' \ -e 's,^(.+ControlPath ~/.var/ssh/ssh_control_)%l_(.+),\1\2,' \ + -e 's,^.+\bVisualHostKey\b.+$$,##UNSUPPORTED##&,' \ $@ \ ;; \ (3.9*) \