From 356a0b004aad93ec570b134664522a3a925ba556 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 8 Nov 1999 15:30:59 +1100 Subject: Lots of changes: - Removed lots of unnecessary checks from autoconf - Added support and autoconf test for openpty() function (Unix98 pty support) - Fix for scp not finding ssh if not installed as /usr/bin/ssh - Added TODO file - Merged parts of Debian patch From Phil Hands : - Added ssh-askpass program - Added ssh-askpass support to ssh-add.c - Create symlinks for slogin on install - Fix "distclean" target in makefile - Added example for ssh-agent to manpage - Added support for PAM_TEXT_INFO messages - Disable internal /etc/nologin support if PAM enabled - Merged latest OpenBSD CVS changes: - [sshd.c] don't send fail-msg but disconnect if too many authentication failures - [sshd.c] replace assert() with error, fatal or packet_disconnect - [sshd.c] remove unused argument. ok dugsong - [sshd.c] typo - [rsa.c] clear buffers used for encryption. ok: niels - [rsa.c] replace assert() with error, fatal or packet_disconnect - Fixed coredump after merge of OpenBSD rsa.c patch --- Makefile.in | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 6217c5848..151131c6d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -7,7 +7,7 @@ mandir=@mandir@ CC=@CC@ OPT_FLAGS=-g -CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" @DEFS@ +CFLAGS=$(OPT_FLAGS) -Wall -DETCDIR=\"@sysconfdir@\" -DSSH_PROGRAM=\"@bindir@/ssh\" @DEFS@ TARGETS=libssh.a ssh sshd ssh-add ssh-keygen ssh-agent scp LFLAGS=-L. LIBS=-lssh @LIBS@ @@ -48,7 +48,7 @@ ssh-keygen: ssh-keygen.o log-client.o clean: rm -f *.o core $(TARGETS) config.status config.cache config.log - + install: install -d $(bindir) install -d $(sbindir) @@ -56,12 +56,15 @@ install: install -d $(mandir)/man1 install -d $(mandir)/man8 install -s -c ssh $(bindir)/ssh + ln -s ssh $(bindir)/slogin install -s -c scp $(bindir)/scp install -s -c ssh-add $(bindir)/ssh-add + install -m755 -c ssh-askpass $(libdir)/ssh/ssh-askpass install -s -c ssh-agent $(bindir)/ssh-agent install -s -c ssh-keygen $(bindir)/ssh-keygen install -s -c sshd $(sbindir)/sshd install -m644 -c ssh.1 $(mandir)/man1/ssh.1 + ln -s ssh.1 $(mandir)/man1/slogin.1 install -m644 -c scp.1 $(mandir)/man1/scp.1 install -m644 -c ssh-add.1 $(mandir)/man1/ssh-add.1 install -m644 -c ssh-agent.1 $(mandir)/man1/ssh-agent.1 @@ -69,6 +72,9 @@ install: install -m644 -c sshd.8 $(mandir)/man8/sshd.8 distclean: clean - rm -f Makefile config.h core configure *~ + rm -f Makefile config.h core *~ mrproper: distclean + +veryclean: distclean + rm -f configure -- cgit v1.2.3