forked from pool/openssh
Accepting request 121257 from network
- By default openSSH checks at *runtime* if the openssl API version matches with the running library, that might be good if you are compiling SSH yourself but it is a totally insane way to check for binary/source compatibility in a distribution. (forwarded request 120648 from elvigia) OBS-URL: https://build.opensuse.org/request/show/121257 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openssh?expand=0&rev=74
This commit is contained in:
commit
f33ec16ccc
15
openssh-nocrazyabicheck.patch
Normal file
15
openssh-nocrazyabicheck.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
--- entropy.c.orig
|
||||||
|
+++ entropy.c
|
||||||
|
@@ -213,10 +213,11 @@ seed_rng(void)
|
||||||
|
* OpenSSL version numbers: MNNFFPPS: major minor fix patch status
|
||||||
|
* We match major, minor, fix and status (not patch)
|
||||||
|
*/
|
||||||
|
+ /*
|
||||||
|
if ((SSLeay() ^ OPENSSL_VERSION_NUMBER) & ~0xff0L)
|
||||||
|
fatal("OpenSSL version mismatch. Built against %lx, you "
|
||||||
|
"have %lx", (u_long)OPENSSL_VERSION_NUMBER, SSLeay());
|
||||||
|
-
|
||||||
|
+*/
|
||||||
|
#ifndef OPENSSL_PRNG_ONLY
|
||||||
|
if (RAND_status() == 1) {
|
||||||
|
debug3("RNG is ready, skipping seeding");
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 10 20:50:33 UTC 2012 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- By default openSSH checks at *runtime* if the openssl
|
||||||
|
API version matches with the running library, that might
|
||||||
|
be good if you are compiling SSH yourself but it is a totally
|
||||||
|
insane way to check for binary/source compatibility in a distribution.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 20 08:29:17 UTC 2012 - meissner@suse.com
|
Mon Feb 20 08:29:17 UTC 2012 - meissner@suse.com
|
||||||
|
|
||||||
|
@ -72,6 +72,7 @@ Patch17: %{name}-5.9p1-homechroot.patch
|
|||||||
Patch18: %{name}-5.9p1-sshconfig-knownhostschanges.diff
|
Patch18: %{name}-5.9p1-sshconfig-knownhostschanges.diff
|
||||||
Patch19: %{name}-5.9p1-host_ident.diff
|
Patch19: %{name}-5.9p1-host_ident.diff
|
||||||
Patch20: converter-linking.patch
|
Patch20: converter-linking.patch
|
||||||
|
Patch21: openssh-nocrazyabicheck.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version} > 1140
|
%if 0%{?suse_version} > 1140
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
@ -121,6 +122,7 @@ Window System passphrase dialog for OpenSSH.
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19 -p1
|
%patch19 -p1
|
||||||
%patch20
|
%patch20
|
||||||
|
%patch21
|
||||||
cp -v %{SOURCE4} .
|
cp -v %{SOURCE4} .
|
||||||
cp -v %{SOURCE6} .
|
cp -v %{SOURCE6} .
|
||||||
cd ../x11-ssh-askpass-%{xversion}
|
cd ../x11-ssh-askpass-%{xversion}
|
||||||
|
Loading…
Reference in New Issue
Block a user