mirror of git://anongit.mindrot.org/openssh.git
- Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
This commit is contained in:
parent
5a88b6e70b
commit
1a07ebd4d8
1
CREDITS
1
CREDITS
|
@ -19,6 +19,7 @@ David Agraz <dagraz@jahoopa.com> - Build fixes
|
||||||
David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, AIX, NetBSD fixes
|
David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, AIX, NetBSD fixes
|
||||||
Gary E. Miller <gem@rellim.com> - SCO support
|
Gary E. Miller <gem@rellim.com> - SCO support
|
||||||
HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp> - Translations & doc fixes
|
HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp> - Translations & doc fixes
|
||||||
|
Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp> - Configure fixes
|
||||||
Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
|
Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
|
||||||
Jani Hakala <jahakala@cc.jyu.fi> - Patches
|
Jani Hakala <jahakala@cc.jyu.fi> - Patches
|
||||||
Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
|
Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
20000308
|
||||||
|
- Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
|
||||||
|
|
||||||
|
20000307
|
||||||
|
- Released 1.2.2p1
|
||||||
|
|
||||||
20000305
|
20000305
|
||||||
- Fix DEC compile fix
|
- Fix DEC compile fix
|
||||||
- Explicitly seed OpenSSL's PRNG before checking rsa_alive()
|
- Explicitly seed OpenSSL's PRNG before checking rsa_alive()
|
||||||
|
|
|
@ -155,7 +155,7 @@ for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/
|
||||||
LIBS="$saved_LIBS -L$ssldir"
|
LIBS="$saved_LIBS -L$ssldir"
|
||||||
CFLAGS="$CFLAGS -I$ssldir/include"
|
CFLAGS="$CFLAGS -I$ssldir/include"
|
||||||
if test "x$need_dash_r" = "x1" ; then
|
if test "x$need_dash_r" = "x1" ; then
|
||||||
LIBS="$LIBS -R$ssldir"
|
LIBS="$LIBS -R$ssldir/lib"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
LIBS="$LIBS -lcrypto"
|
LIBS="$LIBS -lcrypto"
|
||||||
|
|
Loading…
Reference in New Issue