OpenSSH 2.5.0p1
Tim Rice
tim at multitalents.net
Wed Feb 21 13:32:13 EST 2001
On Tue, 20 Feb 2001 mouring at etoh.eviladmin.org wrote:
>
> On Mon, 19 Feb 2001, Tim Rice wrote:
>
> > On Mon, 19 Feb 2001 mouring at etoh.eviladmin.org wrote:
> >
> > >
> > > Damien commited a different patch. So I get this is the end of the
> > > story unless there are problems with it.
> >
> > It looks like a good patch. Too bad it doesn't work.
[snip]
>
> Is it possible for you to locate what is doing it? Damien will be out for
> a few days, and I don't have access to any SCO machines for testing. And I
> don't see the problem under Redhat.
OK, it wasn't tough. I had allready made this mistake making my patch.
Just needed $saved_LDFLAGS in a few places where $LDFLAGS was used.
>
> - Ben
>
>
--
Tim Rice Multitalents (707) 887-1469
tim at multitalents.net
-------------- next part --------------
--- openssh_cvs/configure.in.old Tue Feb 20 18:16:17 2001
+++ openssh_cvs/configure.in Tue Feb 20 18:16:20 2001
@@ -614,12 +614,12 @@
# Try to use $ssldir/lib if it exists, otherwise
# $ssldir
if test -d "$ssldir/lib" ; then
- LDFLAGS="$LDFLAGS -L$ssldir/lib"
+ LDFLAGS="$saved_LDFLAGS -L$ssldir/lib"
if test ! -z "$need_dash_r" ; then
LDFLAGS="$LDFLAGS -R$ssldir/lib"
fi
else
- LDFLAGS="$LDFLAGS -L$ssldir"
+ LDFLAGS="$saved_LDFLAGS -L$ssldir"
if test ! -z "$need_dash_r" ; then
LDFLAGS="$LDFLAGS -R$ssldir"
fi
@@ -676,12 +676,12 @@
# Try to use $ssldir/lib if it exists, otherwise
# $ssldir
if test -d "$ssldir/lib" ; then
- LDFLAGS="$LDFLAGS -L$ssldir/lib"
+ LDFLAGS="$saved_LDFLAGS -L$ssldir/lib"
if test ! -z "$need_dash_r" ; then
LDFLAGS="$LDFLAGS -R$ssldir/lib"
fi
else
- LDFLAGS="$LDFLAGS -L$ssldir"
+ LDFLAGS="$saved_LDFLAGS -L$ssldir"
if test ! -z "$need_dash_r" ; then
LDFLAGS="$LDFLAGS -R$ssldir"
fi
More information about the openssh-unix-dev
mailing list