head	1.7;
access;
symbols
	RELEASE_4_5_0:1.6
	RELEASE_4_4_0:1.6
	RELEASE_4_3_0:1.5
	RELEASE_4_2_0:1.5
	RELEASE_4_1_1:1.4
	RELEASE_4_1_0:1.4
	RELEASE_3_5_0:1.4
	RELEASE_4_0_0:1.4
	RELEASE_3_4_0:1.4
	openssh_1_2:1.1.1.1
	OPENBSD:1.1.1;
locks; strict;
comment	@# @;


1.7
date	2002.03.12.17.54.07;	author dinoex;	state dead;
branches;
next	1.6;

1.6
date	2001.06.08.08.03.26;	author dinoex;	state Exp;
branches;
next	1.5;

1.5
date	2000.11.04.23.04.25;	author green;	state Exp;
branches;
next	1.4;

1.4
date	99.11.24.03.36.21;	author green;	state Exp;
branches;
next	1.3;

1.3
date	99.11.17.17.19.25;	author green;	state dead;
branches;
next	1.2;

1.2
date	99.11.17.00.56.06;	author green;	state Exp;
branches;
next	1.1;

1.1
date	99.11.08.06.20.52;	author green;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.11.08.06.20.52;	author green;	state Exp;
branches;
next	;


desc
@@


1.7
log
@Rename Patches to make navigation much more easier.
@
text
@--- ssh-add/Makefile.orig	Sun Mar  4 01:51:25 2001
+++ ssh-add/Makefile	Sat May 26 14:56:29 2001
@@@@ -7,12 +7,12 @@@@
 
 BINMODE?=555
 
-BINDIR=	/usr/bin
-MAN=	ssh-add.1
+BINDIR=	/bin
+MAN1=	ssh-add.1
 
 SRCS=	ssh-add.c
 
 .include <bsd.prog.mk>
 
-LDADD+=	-lcrypto
+LDADD+=	${CRYPTOLIBS}
 DPADD+= ${LIBCRYPTO}
@


1.6
log
@- Update from OpenSSH 2.2.0 to OpenSSH 2.9
- Features:
  Possible use of sftp/sftp-server with older FreeBSD releases.
  Use a newer version independently from the Base system.
  Easier to test and fix possible security bugs.
- Bugs:
  build of pam_ssm.so isn't be supported any more
  Any file named "cookie" can be deleted by this and any older "sshd"
  with X11 Forwarding.
@
text
@@


1.5
log
@Update to OpenSSH 2.2.0.  This is an end-of-life update for the
ports-based OpenSSH.  OpenSSH has been in the base system for more
than long enough to justify not having to maintain two separate
FreeBSD versions of OpenSSH.
@
text
@d1 3
a3 3
--- ssh-add/Makefile.orig	Thu Jun 29 14:35:47 2000
+++ ssh-add/Makefile	Sat Nov  4 17:01:50 2000
@@@@ -5,12 +5,12 @@@@
d12 1
a12 1
 SRCS=	ssh-add.c log-client.c
d16 3
a18 3
-LDADD+=	-lcrypto -lutil -lz
+LDADD+=	${CRYPTOLIBS} -lutil -lz
 DPADD+= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ}
@


1.4
log
@Update the CVS_DATE.  This brings in support for TIS authentication,
obsoleting a couple patches (it's the same code, though, except for
additions).

This also brings in KNFization of everything (please hold the cheering
down :) and made me reroll all my patches.

My patches have been almost entirely rewritten.  The places are the
same, but the code's rewritten.  It fits with the style (KNF) now,
and looks better.

I've also added strlcat.c to the build, which, just like strlcpy.c, is
necessary for compatibility with older libcs.  After strlcat() snuck
into the OpenSSH code recently, this would prevent OpenSSH from
building on (e.g.) FreeBSD 3.2.  Adding it to ssh/lib/ makes it work
yet again :)
@
text
@d1 5
a5 3
--- /usr/ports/distfiles/OpenSSH-1.2/src/usr.bin/ssh/ssh-add/Makefile	Wed Oct 27 12:54:48 1999
+++ ./ssh-add/Makefile	Tue Nov 23 19:26:48 1999
@@@@ -2,20 +2,13 @@@@
a6 10
 PROG=	ssh-add
 BINOWN=	root
-
-.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "powerpc" || \
-	${MACHINE_ARCH} == "hppa")
-BINMODE=0000
-.else
-BINMODE?=555
-.endif
-
a8 1
+BINMODE=555
@


1.3
log
@Thanks to those who replied!  The include (ssl versus openssl) transform
is now done in post-patch.

Submitted by:	Anton Berezin <tobez@@plab.ku.dk>, Christian Weisgerber <naddy@@unix-ag.uni-kl.de>
@
text
@d1 3
a3 6
diff -ru /home/green/ssh/cipher.h ./cipher.h
--- /home/green/ssh/cipher.h	Sun Oct  3 03:39:00 1999
+++ ./cipher.h	Mon Nov  8 00:06:40 1999
@@@@ -16,8 +16,8 @@@@
 #ifndef CIPHER_H
 #define CIPHER_H
d5 15
a19 4
-#include <ssl/des.h>
-#include <ssl/blowfish.h>
+#include <openssl/des.h>
+#include <openssl/blowfish.h>
d21 7
a27 2
 /* Cipher types.  New types can be added, but old types should not be removed
    for compatibility.  The maximum allowed value is 31. */
@


1.2
log
@Prompted by Kris Kennaway <kris@@FreeBSD.org>

Update to to the current time for OpenSSH.  The notable commit given to me
for this new date is:

(provos@@cvs.openbsd.org)

        usr.bin/ssh    : hostfile.c

in known_hosts key lookup the entry for the bits does not need to match, all
the information is contained in n and e.  This solves the problem with buggy
servers announcing the wrong modulus length.  markus and me.
@
text
@@


1.1
log
@Initial revision
@
text
@d8 1
a8 1
-#include <des.h>
d10 1
a11 1
+#include <openssl/des.h>
@


1.1.1.1
log
@Say hello to OpenSSH!  It's more secure, has a better license, and
is actively maintained by members of the OpenBSD project.
@
text
@@
