summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in37
-rw-r--r--configure.ac3
3 files changed, 24 insertions, 20 deletions
diff --git a/ChangeLog b/ChangeLog
index 35995d3dc..af4ec49e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,8 @@
15 markus@ ok 15 markus@ ok
16 - (djm) Update README to reflect AIX's status as a well supported platform. 16 - (djm) Update README to reflect AIX's status as a well supported platform.
17 From dtucker@zip.com.au 17 From dtucker@zip.com.au
18 - (tim) [Makefile.in configure.ac] replace fixpath with sed script. Patch
19 by Mo DeJong.
18 20
1920030107 2120030107
20 - (djm) Bug #401: Work around Linux breakage with IPv6 mapped addresses. 22 - (djm) Bug #401: Work around Linux breakage with IPv6 mapped addresses.
@@ -960,4 +962,4 @@
960 save auth method before monitor_reset_key_state(); bugzilla bug #284; 962 save auth method before monitor_reset_key_state(); bugzilla bug #284;
961 ok provos@ 963 ok provos@
962 964
963$Id: ChangeLog,v 1.2554 2003/01/08 12:28:40 djm Exp $ 965$Id: ChangeLog,v 1.2555 2003/01/09 01:22:59 tim Exp $
diff --git a/Makefile.in b/Makefile.in
index 89d02c959..85b108d16 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.222 2002/07/14 17:02:21 tim Exp $ 1# $Id: Makefile.in,v 1.223 2003/01/09 01:22:59 tim Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -48,6 +48,7 @@ AR=@AR@
48RANLIB=@RANLIB@ 48RANLIB=@RANLIB@
49INSTALL=@INSTALL@ 49INSTALL=@INSTALL@
50PERL=@PERL@ 50PERL=@PERL@
51SED=@SED@
51ENT=@ENT@ 52ENT=@ENT@
52XAUTH_PATH=@XAUTH_PATH@ 53XAUTH_PATH=@XAUTH_PATH@
53LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@ 54LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
@@ -74,23 +75,23 @@ CONFIGFILES=sshd_config.out ssh_config.out moduli.out
74CONFIGFILES_IN=sshd_config ssh_config moduli 75CONFIGFILES_IN=sshd_config ssh_config moduli
75 76
76PATHSUBS = \ 77PATHSUBS = \
77 -D/etc/ssh/ssh_prng_cmds=$(sysconfdir)/ssh_prng_cmds \ 78 -e 's|/etc/ssh/ssh_prng_cmds|$(sysconfdir)/ssh_prng_cmds|g' \
78 -D/etc/ssh/ssh_config=$(sysconfdir)/ssh_config \ 79 -e 's|/etc/ssh/ssh_config|$(sysconfdir)/ssh_config|g' \
79 -D/etc/ssh/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \ 80 -e 's|/etc/ssh/ssh_known_hosts|$(sysconfdir)/ssh_known_hosts|g' \
80 -D/etc/ssh/sshd_config=$(sysconfdir)/sshd_config \ 81 -e 's|/etc/ssh/sshd_config|$(sysconfdir)/sshd_config|g' \
81 -D/usr/libexec=$(libexecdir) \ 82 -e 's|/usr/libexec|$(libexecdir)|g' \
82 -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \ 83 -e 's|/etc/shosts.equiv|$(sysconfdir)/shosts.equiv|g' \
83 -D/etc/ssh/ssh_host_key=$(sysconfdir)/ssh_host_key \ 84 -e 's|/etc/ssh/ssh_host_key|$(sysconfdir)/ssh_host_key|g' \
84 -D/etc/ssh/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \ 85 -e 's|/etc/ssh/ssh_host_dsa_key|$(sysconfdir)/ssh_host_dsa_key|g' \
85 -D/etc/ssh/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \ 86 -e 's|/etc/ssh/ssh_host_rsa_key|$(sysconfdir)/ssh_host_rsa_key|g' \
86 -D/var/run/sshd.pid=$(piddir)/sshd.pid \ 87 -e 's|/var/run/sshd.pid|$(piddir)/sshd.pid|g' \
87 -D/etc/ssh/moduli=$(sysconfdir)/moduli \ 88 -e 's|/etc/ssh/moduli|$(sysconfdir)/moduli|g' \
88 -D/etc/ssh/sshrc=$(sysconfdir)/sshrc \ 89 -e 's|/etc/sshrc|$(sysconfdir)/sshrc|g' \
89 -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \ 90 -e 's|/usr/X11R6/bin/xauth|$(XAUTH_PATH)|g' \
90 -D/var/empty=$(PRIVSEP_PATH) \ 91 -e 's|/var/empty|$(PRIVSEP_PATH)|g' \
91 -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@ 92 -e 's|/usr/bin:/bin:/usr/sbin:/sbin|@user_path@|g'
92 93
93FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) 94FIXPATHSCMD = $(SED) $(PATHSUBS)
94 95
95all: $(CONFIGFILES) $(MANPAGES) $(TARGETS) 96all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
96 97
diff --git a/configure.ac b/configure.ac
index a115d3cd2..d384f7dd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.96 2003/01/07 13:06:48 djm Exp $ 1# $Id: configure.ac,v 1.97 2003/01/09 01:22:59 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -14,6 +14,7 @@ AC_PROG_RANLIB
14AC_PROG_INSTALL 14AC_PROG_INSTALL
15AC_PATH_PROG(AR, ar) 15AC_PATH_PROG(AR, ar)
16AC_PATH_PROGS(PERL, perl5 perl) 16AC_PATH_PROGS(PERL, perl5 perl)
17AC_PATH_PROG(SED, sed)
17AC_SUBST(PERL) 18AC_SUBST(PERL)
18AC_PATH_PROG(ENT, ent) 19AC_PATH_PROG(ENT, ent)
19AC_SUBST(ENT) 20AC_SUBST(ENT)