diff options
author | Damien Miller <djm@mindrot.org> | 2000-03-08 09:03:44 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-03-08 09:03:44 +1100 |
commit | 1a07ebd4d8d39c6814bbd84c1aec4ebf2bd005a2 (patch) | |
tree | 217bf5e6598927ec219ca5a21241a144258d35cd | |
parent | 5a88b6e70b57b39dc355140d39fcf42944db5129 (diff) | |
download | openssh-git-1a07ebd4d8d39c6814bbd84c1aec4ebf2bd005a2.tar.gz |
- Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
-rw-r--r-- | CREDITS | 1 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -19,6 +19,7 @@ David Agraz <dagraz@jahoopa.com> - Build fixes David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, AIX, NetBSD fixes Gary E. Miller <gem@rellim.com> - SCO support 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 Jani Hakala <jahakala@cc.jyu.fi> - Patches 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 - Fix DEC compile fix - Explicitly seed OpenSSL's PRNG before checking rsa_alive() diff --git a/configure.in b/configure.in index 4b5ee92c..e02a026b 100644 --- a/configure.in +++ b/configure.in @@ -155,7 +155,7 @@ for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/ LIBS="$saved_LIBS -L$ssldir" CFLAGS="$CFLAGS -I$ssldir/include" if test "x$need_dash_r" = "x1" ; then - LIBS="$LIBS -R$ssldir" + LIBS="$LIBS -R$ssldir/lib" fi fi LIBS="$LIBS -lcrypto" |