Rafal Maszkowski <[EMAIL PROTECTED]> writes:
> On Tue, Feb 29, 2000 at 05:25:07PM +0100, Niels M�ller wrote:
>
> > IDEA is patented, so you probably don't want to enable it. It's
> > disabled by default, not tested and definitely not supported.
>
> Not patented here and I wanted most compatibility (maybe it doesn't make sense
> if ssh2 doesn't have it and in ssh1 IDEA is handled by calling sshd).
References? I'm pretty sure it's not a US-only patent. After all, IDEA
is owned by a Swiss company. Anyway, ssh1 and ssh2 are incompatible in
other ways.
> > Hmm. I don't quite follow you here. You are supposedly able to specify
> > a default value for the lshd --ssh1-fallback option, at configure
> > time. Using --with-sshd1-program=/some/path to ./configure. Are you
> > saying that it is broken?
>
> I haven't looked into details and was expecting that configure checks some
> default places/names or uses current PATH. Seems I was wrong. For me
> --with-sshd1[=PROGRAM] was suggesting the above interpretation.
You have to use absolute filenames (you might get away with using
paths relative from wherever lshd's working directory will be, but I
wouldn't recommend that). Do you have any concrete suggestions on how
to make that clearer?
One might make the configure script smarter, and replace
# Default sshd1 path
if test x$with_sshd1 = xyes ; then
with_sshd1=/usr/local/sbin/sshd1
fi
with a call of AC_PATH_PROG. Last time this was discussed on the list,
my conclusion was that it was better to be predictable than smart. But
perhaps I should change my mind.
/Niels