summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-03-08 09:03:44 +1100
committerDamien Miller <djm@mindrot.org>2000-03-08 09:03:44 +1100
commit1a07ebd4d8d39c6814bbd84c1aec4ebf2bd005a2 (patch)
tree217bf5e6598927ec219ca5a21241a144258d35cd
parent5a88b6e70b57b39dc355140d39fcf42944db5129 (diff)
downloadopenssh-git-1a07ebd4d8d39c6814bbd84c1aec4ebf2bd005a2.tar.gz
- Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
3 files changed, 8 insertions, 1 deletions
diff --git a/CREDITS b/CREDITS
index 234bc117..50a0447e 100644
--- a/CREDITS
+++ b/CREDITS
@@ -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
diff --git a/ChangeLog b/ChangeLog
index 22d3377b..4eb4ee6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"