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)
- 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 234bc1178..50a0447eb 100644
--- a/CREDITS
+++ b/CREDITS
@@ -19,6 +19,7 @@ David Agraz <dagraz@jahoopa.com> - Build fixes
19David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, AIX, NetBSD fixes 19David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, AIX, NetBSD fixes
20Gary E. Miller <gem@rellim.com> - SCO support 20Gary E. Miller <gem@rellim.com> - SCO support
21HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp> - Translations & doc fixes 21HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp> - Translations & doc fixes
22Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp> - Configure fixes
22Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch 23Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
23Jani Hakala <jahakala@cc.jyu.fi> - Patches 24Jani Hakala <jahakala@cc.jyu.fi> - Patches
24Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes 25Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
diff --git a/ChangeLog b/ChangeLog
index 22d3377b1..4eb4ee6a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120000308
2 - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
3
420000307
5 - Released 1.2.2p1
6
120000305 720000305
2 - Fix DEC compile fix 8 - Fix DEC compile fix
3 - Explicitly seed OpenSSL's PRNG before checking rsa_alive() 9 - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
diff --git a/configure.in b/configure.in
index 4b5ee92cf..e02a026bb 100644
--- a/configure.in
+++ b/configure.in
@@ -155,7 +155,7 @@ for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/
155 LIBS="$saved_LIBS -L$ssldir" 155 LIBS="$saved_LIBS -L$ssldir"
156 CFLAGS="$CFLAGS -I$ssldir/include" 156 CFLAGS="$CFLAGS -I$ssldir/include"
157 if test "x$need_dash_r" = "x1" ; then 157 if test "x$need_dash_r" = "x1" ; then
158 LIBS="$LIBS -R$ssldir" 158 LIBS="$LIBS -R$ssldir/lib"
159 fi 159 fi
160 fi 160 fi
161 LIBS="$LIBS -lcrypto" 161 LIBS="$LIBS -lcrypto"