- (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
that it was compiled against. Patch by Pekka Savola <pekkas@netcore.fi>
This commit is contained in:
parent
008e29189e
commit
379f205a16
|
@ -1,6 +1,8 @@
|
||||||
20010223
|
20010223
|
||||||
- (bal) Fix --define rh7 in openssh.spec file. Patch by Steve Tell
|
- (bal) Fix --define rh7 in openssh.spec file. Patch by Steve Tell
|
||||||
<tell@telltronics.org>
|
<tell@telltronics.org>
|
||||||
|
- (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
|
||||||
|
that it was compiled against. Patch by Pekka Savola <pekkas@netcore.fi>
|
||||||
|
|
||||||
20010222
|
20010222
|
||||||
- (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
|
- (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
|
||||||
|
@ -4102,4 +4104,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.813 2001/02/23 04:45:15 mouring Exp $
|
$Id: ChangeLog,v 1.814 2001/02/23 04:55:46 mouring Exp $
|
||||||
|
|
|
@ -22,6 +22,8 @@
|
||||||
# rpm -ba|--rebuild --define "rh7 1"
|
# rpm -ba|--rebuild --define "rh7 1"
|
||||||
%{?rh7:%define redhat7 1}
|
%{?rh7:%define redhat7 1}
|
||||||
|
|
||||||
|
%define exact_openssl_version %(rpm -q openssl | cut -d - -f 2)
|
||||||
|
|
||||||
Summary: OpenSSH free Secure Shell (SSH) implementation
|
Summary: OpenSSH free Secure Shell (SSH) implementation
|
||||||
Name: openssh
|
Name: openssh
|
||||||
Version: %{oversion}
|
Version: %{oversion}
|
||||||
|
@ -37,6 +39,7 @@ Group: Applications/Internet
|
||||||
BuildRoot: /tmp/openssh-%{version}-buildroot
|
BuildRoot: /tmp/openssh-%{version}-buildroot
|
||||||
Obsoletes: ssh
|
Obsoletes: ssh
|
||||||
PreReq: openssl >= 0.9.5a
|
PreReq: openssl >= 0.9.5a
|
||||||
|
RreReq: openssl = %{exact_openssl_version}
|
||||||
Requires: openssl >= 0.9.5a
|
Requires: openssl >= 0.9.5a
|
||||||
Requires: rpm >= 3.0.5
|
Requires: rpm >= 3.0.5
|
||||||
BuildPreReq: perl, openssl-devel, tcp_wrappers
|
BuildPreReq: perl, openssl-devel, tcp_wrappers
|
||||||
|
|
Loading…
Reference in New Issue